CombinedListing
A combined listing that groups multiple products under shared options.
Type Definition
type CombinedListing {
options: [String]
optionsWithValues: [ProductOption]
optionsByHandle: [ProductOption]
}Fields
Relationships
CombinedListing is used to group multiple products under shared options. It contains references to ProductOption objects that define the available options for the combined listing. This type is primarily used within the Product type’s combinedListing field to provide structured option data.
Example
{
options
optionsWithValues {
name
values
}
optionsByHandle {
name
values
}
}Implements
This type does not implement any interfaces.
Related Types
- ProductOption
- String