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