INPUT_OBJECT

CategoryFilter

link GraphQL Schema definition

1input CategoryFilter {
2
3id: [Int!]
4
5# Exactly one input field should be provided
6name: StringMatch
7
8status: [Status!]
9
10parentId: [Int!]
11
12storeId: [Int!]
13
14isTopCategory: Boolean
15
16# Exactly one input field should be provided
17uri: StringMatch
18
19search: String
20
21notNull: [String!]
22
23negate: [String!]
24}