INPUT_OBJECT

ProductFilter

link GraphQL Schema definition

1input ProductFilter {
2
3id: [Int!]
4
5# Exactly one input field should be provided
6name: StringMatch
7
8status: [ProductStatus!]
9
10# Exactly one input field should be provided
11productNumber: StringMatch
12
13createdAt: DateRange
14
15updatedAt: DateRange
16
17# Exactly one input field should be provided
18harmonizedCommodityCode: StringMatch
19
20# Exactly one input field should be provided
21harmonizedCommodityDescription: StringMatch
22
23# Required permission: Product.internalComment:read
24#
25# Exactly one input field should be provided
26internalComment: StringMatch
27
28brandId: [Int!]
29
30collectionId: [Int!]
31
32# Required permission: Product.countryOfOrigin:read
33countryOfOriginId: [Int!]
34
35folderId: [Int!]
36
37measurementChartId: [Int!]
38
39externalId: [String!]
40
41search: String
42
43notNull: [String!]
44
45negate: [String!]
46}