# ProductPromotion Describes a product promotion with details about the promotion type, title, and description. ## Type Definition ```graphql type ProductPromotion { type: String title: String description: String } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | type | String | Returns the promotion type | | title | String | Returns the promotion title if any. | | description | String | Returns the promotion description if any. | ## Relationships ProductPromotion is referenced by the `promotion` field on `ProductVariant`, allowing product variants to include promotion information as part of their data structure. ## Example ```graphql { promotion { type title description } } ``` ## Implements None ## Related Types - `ProductVariant`