# Inventory An inventory location, including its name, description, and stock policy. ## Type Definition ```graphql type Inventory { id: Int title: String description: String policy: String } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | id | Int | The unique identifier of the inventory. | | title | String | The name of the inventory. | | description | String | The description of the inventory. | | policy | String | The stock policy for purchasing from the inventory. | ## Relationships The Inventory type represents a discrete inventory location within the system. It can be referenced by other types that need to associate products, stock levels, or fulfillment operations with specific inventory locations. ## Example ```graphql { id title description policy } ``` ## Implements This type does not implement any interfaces. ## Related Types No related types are specified for this object.