Skip to Content

ProductPromotion

A promotion applied to a product.

Type Definition

type ProductPromotion { type: String title: String description: String }

Fields

FieldTypeDescription
typeStringReturns the promotion type
titleStringReturns the promotion title if any.
descriptionStringReturns the promotion description if any.

Relationships

ProductPromotion is used by ProductVariant through the promotion field, allowing product variants to include promotion information as part of their data structure.

Example

{ productVariant(id: 12345) { promotion { type title description } } }

Implements

This type does not implement any interfaces.