Skip to Content

InventoryQuantity

An inventory quantity record with inventory, quantity, location, alarm level, SKU, and low stock status.

Type Definition

type InventoryQuantity { inventory: Inventory! quantity: Int! location: String alarmLevel: Int sku: String isLowOnStock: Boolean! }

Fields

FieldTypeDescription
inventoryInventory!The inventory object for this quantity record.
quantityInt!The stock quantity in this inventory.
locationStringThe location of the inventory.
alarmLevelIntThe alarm level for this inventory.
skuStringThe stock keeping unit (SKU) for this inventory.
isLowOnStockBoolean!True if product is low on stock in this inventory.

Relationships

InventoryQuantity contains a required reference to an Inventory object, which provides detailed information about the inventory being tracked. The quantity record includes location and SKU information to uniquely identify stock in a specific location, along with alarm and low stock status indicators.

Example

{ inventory { id } quantity location alarmLevel sku isLowOnStock }

Implements

None