INPUT_OBJECT

WarehouseFilter

link GraphQL Schema definition

1input WarehouseFilter {
2
3id: [Int!]
4
5status: [Status!]
6
7# Exactly one input field should be provided
8name: StringMatch
9
10# Exactly one input field should be provided
11address: StringMatch
12
13# Exactly one input field should be provided
14address2: StringMatch
15
16countryId: [Int!]
17
18stateId: [Int!]
19
20# Exactly one input field should be provided
21city: StringMatch
22
23# Exactly one input field should be provided
24zipCode: StringMatch
25
26externalId: [String!]
27
28search: String
29
30notNull: [String!]
31
32negate: [String!]
33}