# InventoryQuantity An inventory quantity record with inventory, quantity, location, alarm level, SKU, and low stock status. ## Type Definition ```graphql type InventoryQuantity { inventory: Inventory! quantity: Int! location: String alarmLevel: Int sku: String isLowOnStock: Boolean! } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | inventory | Inventory! | The inventory object for this quantity record. | | quantity | Int! | The stock quantity in this inventory. | | location | String | The location of the inventory. | | alarmLevel | Int | The alarm level for this inventory. | | sku | String | The stock keeping unit (SKU) for this inventory. | | isLowOnStock | Boolean! | True if product is low on stock in this inventory. | ## Relationships The `InventoryQuantity` type represents a specific stock quantity record within an inventory system. It maintains a required relationship to the `Inventory` object, which provides the broader inventory context for this quantity record. The type aggregates inventory metrics including stock quantity, physical location, alarm thresholds, and stock status indicators. ## Example ```graphql { inventory { id } quantity location alarmLevel sku isLowOnStock } ``` ## Implements This type does not implement any interfaces. ## Related Types - [Inventory](/reference/storefront/v1/objects/inventory)