INPUT_OBJECT

DisplayFilter

link GraphQL Schema definition

1input DisplayFilter {
2
3id: [Int!]
4
5# Exactly one input field should be provided
6name: StringMatch
7
8status: [Status!]
9
10# Exactly one input field should be provided
11uri: StringMatch
12
13# Exactly one input field should be provided
14description: StringMatch
15
16# Exactly one input field should be provided
17shortDescription: StringMatch
18
19tags: [String!]
20
21marketId: [Int!]
22
23productId: [Int!]
24
25productVariantId: [Int!]
26
27storeId: [Int!]
28
29taxGroupId: [Int!]
30
31updatedAt: DateRange
32
33search: String
34
35notNull: [String!]
36
37negate: [String!]
38}