INPUT_OBJECT

VoucherActionCreateInput

link GraphQL Schema definition

1input VoucherActionCreateInput {
2
3# Exactly one input field should be provided
4voucher: VoucherInput!
5
6# Pass null as ID to make this action an entrypoint
7entrypointAction: VoucherActionInput!
8
9continueStrategy: VoucherActionContinueStrategy!
10
11# Exactly one input field should be provided
12addCriteria: [VoucherActionCriteriaCreateInput!]!
13
14# Exactly one input field should be provided
15result: VoucherActionResultInput!
16}

link Required by