INPUT_OBJECT

ProductVariantFilter

link GraphQL Schema definition

1input ProductVariantFilter {
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
11variantNumber: StringMatch
12
13displayId: [Int!]
14
15productId: [Int!]
16
17sizeChartId: [Int!]
18
19sizeId: [Int!]
20
21externalId: [String!]
22
23search: String
24
25notNull: [String!]
26
27negate: [String!]
28
29updatedAt: DateRange
30}