# Inventory Represents a store's inventory, providing access to its identifying information, title, description, and stock policy. ## Type Definition ```graphql type Inventory { title: String description: String policy: String } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | 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 inventory management data for a store. It provides core inventory information including naming, descriptive details, and purchasing policies that define how customers can interact with the store's stock. ## Example ```graphql query { inventory { title description policy } } ``` ## Implements This type does not implement any interfaces. ## Related Types No related types are documented for this type.