ProductPromotion
A promotion applied to a product.
Type Definition
type ProductPromotion {
type: String
title: String
description: String
}Fields
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.