OBJECT

OrderAllocationSplit

link GraphQL Schema definition

1type OrderAllocationSplit {
2# Warehouse used for this part of the order, or null for unallocated
3#
4# Required permission: Warehouse:read
5warehouse: Warehouse
6
7allocationStatus: AllocationStatus!
8
9# All elements are always returned
10lines: [OrderAllocationSplitLine!]!
11
12}