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
19purchaseOrderNumber: StringMatch
20
21type: InvoiceType
22
23status: [InvoiceStatus!]
24
25accountId: [Int!]
26
27adminUserId: [Int!]
28
29currencyId: [Int!]
30
31storeId: [Int!]
32
33search: String
34
35notNull: [String!]
36
37negate: [String!]
38}