INPUT_OBJECT

ShippingOptionFilter

link GraphQL Schema definition

1input ShippingOptionFilter {
2
3id: [Int!]
4
5# Exactly one input field should be provided
6name: StringMatch
7
8status: [Status!]
9
10type: [ShippingOptionType!]
11
12# Exactly one input field should be provided
13uri: StringMatch
14
15updatedAt: DateRange
16
17currencyId: [Int!]
18
19marketId: [Int!]
20
21storeId: [Int!]
22
23storeType: StoreType
24
25search: String
26
27notNull: [String!]
28
29negate: [String!]
30}