InventoryWarehouse
Represents the inventory information of a warehouse
type InventoryWarehouse {
address: Address
allocated: Int!
available: Int!
id: ID!
name: String!
ordered: Int!
physical: Int!
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.id
● ID!
non-null scalar
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.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