ItemAllocation
The item allocation type represents the allocation information for an order item.
type ItemAllocation {
allocatedItem: OrderItem!
committed: Boolean!
createdAt: ISO8601DateTime!
id: ID!
inventoryAllocationId: ID!
inventoryItem: InventoryItem!
location: Location!
locationId: ID!
quantity: Int!
updatedAt: ISO8601DateTime!
warehouse: Warehouse!
warehouseId: ID!
}
Fields
ItemAllocation.allocatedItem
● OrderItem!
non-null object
The order item object that is allocated.
ItemAllocation.committed
● Boolean!
non-null scalar
The flag that indicates if the item was already commited
ItemAllocation.createdAt
● ISO8601DateTime!
non-null scalar
ItemAllocation.id
● ID!
non-null scalar
ItemAllocation.inventoryAllocationId
● ID!
non-null scalar
ItemAllocation.inventoryItem
● InventoryItem!
non-null object
The inventory item object of the allocation item.
ItemAllocation.location
● Location!
non-null object
The location where the item is allocated.
ItemAllocation.locationId
● ID!
non-null scalar
The location ID where the item is allocated.
ItemAllocation.quantity
● Int!
non-null scalar
The quantity of the order item that is allocated.
ItemAllocation.updatedAt
● ISO8601DateTime!
non-null scalar
ItemAllocation.warehouse
● Warehouse!
non-null object
The warehouse where the item is allocated.
ItemAllocation.warehouseId
● ID!
non-null scalar
The warehouse ID where the item is allocated.
Member Of
OrderItem
object