INPUT_OBJECT

OrderAllocateInput

link GraphQL Schema definition

1input OrderAllocateInput {
2
3# Exactly one input field should be provided
4order: OrderInput!
5
6# You may specify, which warehouse(s) should be used to allocate, in desired order.
7# If not given, warehouse(s) will be selected using an allocation rule.
8#
9# Exactly one input field should be provided
10warehouses: [WarehouseInput!]
11
12# Leave empty to auto-allocate the whole order
13allocate: [OrderLineAllocateInput!]
14
15comment: String
16}

link Required by