INPUT_OBJECT

PricelistFilter

link GraphQL Schema definition

1input PricelistFilter {
2
3id: [Int!]
4
5# Exactly one input field should be provided
6name: StringMatch
7
8status: [Status!]
9
10# Required permission: Country:read
11assignedToCountryId: [Int!]
12
13currencyId: [Int!]
14
15isDefaultForCurrency: Boolean
16
17storeId: [Int!]
18
19externalId: [String!]
20
21search: String
22
23notNull: [String!]
24
25negate: [String!]
26}