INPUT_OBJECT

VoucherFilter

link GraphQL Schema definition

1input VoucherFilter {
2
3id: [Int!]
4
5status: [Status!]
6
7# Exactly one input field should be provided
8name: StringMatch
9
10method: [VoucherMethod!]
11
12type: [VoucherType!]
13
14# Exactly one input field should be provided
15code: StringMatch
16
17startAt: DateRange
18
19stopAt: DateRange
20
21maxUsages: IntRange
22
23successfulUsages: IntRange
24
25createdAt: DateRange
26
27updatedAt: DateRange
28
29combineWithOtherVouchers: Boolean
30
31reuse: Boolean
32
33adminUserId: [Int!]
34
35marketId: [Int!]
36
37storeId: [Int!]
38
39externalId: [String!]
40
41search: String
42
43notNull: [String!]
44
45negate: [String!]
46}