1 | input WarehouseDeliveryLineFilter { |
2 | |
3 | id: [Int!] |
4 | |
5 | isAvailable: Boolean |
6 | |
7 | freeToAllocateQuantity: IntRange |
8 | |
9 | deliveredQuantity: IntRange |
10 | |
11 | productSizeName: StringMatch |
12 | |
13 | productSizeId: [Int!] |
14 | |
15 | productVariantId: [Int!] |
16 | |
17 | warehouseId: [Int!] |
18 | |
19 | warehouseDeliveryId: [Int!] |
20 | |
21 | search: String |
22 | |
23 | notNull: [String!] |
24 | |
25 | negate: [String!] |
26 | } |