INPUT_OBJECT

AdminUserFilter

link GraphQL Schema definition

1input AdminUserFilter {
2
3id: [Int!]
4
5# Exactly one input field should be provided
6userName: StringMatch
7
8# Exactly one input field should be provided
9name: StringMatch
10
11# Required permission: AdminUser.email:read
12#
13# Exactly one input field should be provided
14email: StringMatch
15
16status: Status
17
18accountId: [Int!]
19
20brandId: [Int!]
21
22marketId: [Int!]
23
24pricelistId: [Int!]
25
26salesRepresentativeId: [Int!]
27
28search: String
29
30notNull: [String!]
31
32negate: [String!]
33}