INPUT_OBJECT

AccountFilter

link GraphQL Schema definition

1input AccountFilter {
2
3id: [Int!]
4
5# Exactly one input field should be provided
6name: StringMatch
7
8status: [Status!]
9
10createdAt: DateRange
11
12updatedAt: DateRange
13
14discountPercent: FloatRange
15
16isDiscountVisible: Boolean
17
18# Exactly one input field should be provided
19accountEmail: StringMatch
20
21# Exactly one input field should be provided
22billingEmail: StringMatch
23
24# Exactly one input field should be provided
25shippingEmail: StringMatch
26
27# Exactly one input field should be provided
28vatNumber: StringMatch
29
30allowConsignation: Boolean
31
32applyCreditLimit: Boolean
33
34blockIfUnpaidInvoices: Boolean
35
36hasBrandsRestriction: Boolean
37
38isInternal: Boolean
39
40buyerId: [Int!]
41
42marketId: [Int!]
43
44paymentTermsId: [Int!]
45
46pricelistId: [Int!]
47
48salesRepresentativeId: [Int!]
49
50documentTemplateId: [Int!]
51
52search: String
53
54notNull: [String!]
55
56negate: [String!]
57
58externalIdentifier: [String!]
59
60externalId: [ExternalIdentifierInput!]
61}