INPUT_OBJECT

SalesRepresentativeFilter

link GraphQL Schema definition

1input SalesRepresentativeFilter {
2
3id: [Int!]
4
5# Exactly one input field should be provided
6name: StringMatch
7
8status: [Status!]
9
10commissionPercent: FloatRange
11
12# Exactly one input field should be provided
13email: StringMatch
14
15externalId: [String!]
16
17search: String
18
19notNull: [String!]
20
21negate: [String!]
22}