ProductInventory
No description
type ProductInventory {
productId: Int!
totalQuantity: Int!
totalReservedQuantity: Int!
supplierQuantity: Int!
supplierReservedQuantity: Int!
localQuantity: Int!
localReservedQuantity: Int!
nextDeliveryDate: DateTime
balance: [Inventory!]
messages: [String!] @deprecated
total: Int!
}
Fields
ProductInventory.productId ● Int! non-null scalar
Product identifier for this inventory summary.
References the specific product that this inventory aggregation represents, linking to the product catalog.
ProductInventory.totalQuantity ● Int! non-null scalar
Total non-reserved quantity available across all locations.
Sum of all inventory quantities for this product across all warehouses and locations.
ProductInventory.totalReservedQuantity ● Int! non-null scalar
Total quantity reserved across all locations.
Sum of all reserved quantities for this product across all warehouses and locations.
ProductInventory.supplierQuantity ● Int! non-null scalar
Non-reserved quantity available from external suppliers.
Stock quantity that can be sourced from suppliers, including drop-ship inventory and supplier-managed stock.
ProductInventory.supplierReservedQuantity ● Int! non-null scalar
Total quantity reserved from external suppliers.
Sum of all reserved quantities for this product from external suppliers.
ProductInventory.localQuantity ● Int! non-null scalar
Non-reserved quantity available in local warehouses.
Stock quantity physically held in company-owned warehouses and storage facilities, immediately available for fulfillment.
ProductInventory.localReservedQuantity ● Int! non-null scalar
Total quantity reserved in local warehouses.
Sum of all reserved quantities for this product in company-owned warehouses and storage facilities.
ProductInventory.nextDeliveryDate ● DateTime scalar
Earliest expected delivery date for replenishment.
The soonest date when additional inventory is expected to arrive, used for stock planning and customer communication about future availability.
ProductInventory.balance ● [Inventory!] list object
Detailed inventory records for this product.
Complete list of individual inventory entries showing stock levels, locations, suppliers, and costs for comprehensive inventory management.
ProductInventory.total ● Int! non-null scalar
Total count or summary value for the operation.
Show deprecated
Member Of
Product object