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.
8warehouses: [WarehouseInput!]
9
10# Leave empty to auto-allocate the whole order
11allocate: [OrderLineAllocateInput!]
12
13comment: String
14}

link Required by