INPUT_OBJECT

CustomerFilter

link GraphQL Schema definition

1input CustomerFilter {
2
3id: [Int!]
4
5status: [Status!]
6
7# Exactly one input field should be provided
8email: StringMatch
9
10# Exactly one input field should be provided
11firstName: StringMatch
12
13# Exactly one input field should be provided
14lastName: StringMatch
15
16birthdate: DateRange
17
18gender: [Gender!]
19
20# Exactly one input field should be provided
21cellPhoneNumber: StringMatch
22
23# Exactly one input field should be provided
24phoneNumber: StringMatch
25
26createdAt: DateRange
27
28updatedAt: DateRange
29
30lastLoginAt: DateRange
31
32isAnonymized: Boolean
33
34accountId: [Int!]
35
36countryId: [Int!]
37
38languageId: [Int!]
39
40marketId: [Int!]
41
42pricelistId: [Int!]
43
44storeId: [Int!]
45
46# Required permission: Customer.totalOrders:read
47totalOrders: IntRange
48
49externalId: [String!]
50
51search: String
52
53notNull: [String!]
54
55negate: [String!]
56}