INPUT_OBJECT

VoucherActionCreateInput

link GraphQL Schema definition

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

link Required by