INPUT_OBJECT

DiscountFilter

link GraphQL Schema definition

1input DiscountFilter {
2
3id: [Int!]
4
5status: [Status!]
6
7# Exactly one input field should be provided
8name: StringMatch
9
10method: [DiscountMethod!]
11
12type: [DiscountType!]
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
29combineWithOtherDiscounts: Boolean
30
31reuse: Boolean
32
33adminUserId: [Int!]
34
35marketId: [Int!]
36
37storeId: [Int!]
38
39search: String
40
41notNull: [String!]
42
43negate: [String!]
44}