INPUT_OBJECT

CollectionFilter

link GraphQL Schema definition

1input CollectionFilter {
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# Required permission: Collection.totalProducts:read
14totalProducts: IntRange
15
16externalId: [String!]
17
18search: String
19
20notNull: [String!]
21
22negate: [String!]
23}