ProductInventory
No description
type ProductInventory {
productId: Int!
totalQuantity: Int!
supplierQuantity: Int!
localQuantity: Int!
nextDeliveryDate: DateTime
balance: [Inventory!]
}
Fields
ProductInventory.productId ● Int! non-null scalar
Inventory product identifier
ProductInventory.totalQuantity ● Int! non-null scalar
Total product quantity
ProductInventory.supplierQuantity ● Int! non-null scalar
Supplier product quantity
ProductInventory.localQuantity ● Int! non-null scalar
Local product quantity
ProductInventory.nextDeliveryDate ● DateTime scalar
Inventory estimated next delivery date
ProductInventory.balance ● [Inventory!] list object
Inventory items
Member Of
Product object