INPUT_OBJECT

InvoiceFilter

link GraphQL Schema definition

1input InvoiceFilter {
2
3id: [Int!]
4
5number: [Int!]
6
7numberSeriesId: [Int!]
8
9createdAt: DateRange
10
11dueDate: DateRange
12
13isOverdue: Boolean
14
15grandTotalExcludingTax: FloatRange
16
17grandTotalIncludingTax: FloatRange
18
19# Exactly one input field should be provided
20purchaseOrderNumber: StringMatch
21
22type: InvoiceType
23
24status: [InvoiceStatus!]
25
26accountId: [Int!]
27
28adminUserId: [Int!]
29
30currencyId: [Int!]
31
32storeId: [Int!]
33
34externalId: [String!]
35
36search: String
37
38notNull: [String!]
39
40negate: [String!]
41}