Allocation Object
Represents allocation.
type Allocation implements Node {
id: ID!
quantity: Int!
warehouse: Warehouse!
}
Fields
id ● ID!
The ID of allocation.
quantity ● Int!
Quantity allocated for orders.
warehouse ● Warehouse!
The warehouse were items were allocated.
Interfaces
Node
An object with an ID
Member Of
OrderLine object