InventoryWarehouse
Represents the inventory information of a warehouse
type InventoryWarehouse {
address: Address
allocated: Int!
available: Int!
availableToAllocate: Int!
availableToMake: Int!
id: ID!
incoming: Int!
inventorySourceId: ID
inventorySourceName: String
name: String!
ordered: Int!
physical: Int!
status: StatusEnum!
stock: Int!
unavailable: Int!
}
Fields
InventoryWarehouse.address ● Address object common
InventoryWarehouse.allocated ● Int! non-null scalar common
The allocated quantity of the inventory item.
InventoryWarehouse.available ● Int! non-null scalar common
The available quantity of the inventory item.
InventoryWarehouse.availableToAllocate ● Int! non-null scalar common
The amount of this product at this warehouse that is available to allocate to a fulfillment order.
InventoryWarehouse.availableToMake ● Int! non-null scalar common
The available-to-make quantity for bundle products at this warehouse.
InventoryWarehouse.id ● ID! non-null scalar common
InventoryWarehouse.incoming ● Int! non-null scalar common
Incoming quantity for this inventory item at this warehouse.
InventoryWarehouse.inventorySourceId ● ID scalar common
The ID of the external integration that manages inventory for this warehouse.
InventoryWarehouse.inventorySourceName ● String scalar common
The name of the external integration managing inventory for this warehouse.
InventoryWarehouse.name ● String! non-null scalar common
InventoryWarehouse.ordered ● Int! non-null scalar common
The ordered quantity of the inventory item.
InventoryWarehouse.physical ● Int! non-null scalar common
The physical quantity of the inventory item.
InventoryWarehouse.status ● StatusEnum! non-null enum common
The status of the warehouse (ACTIVE or INACTIVE).
InventoryWarehouse.stock ● Int! non-null scalar common
The stock quantity of the inventory item.
InventoryWarehouse.unavailable ● Int! non-null scalar common
The unavailable quantity of the inventory item.
Member Of
InventoryItem object