CustomizationGroupOption
Represents a selectable option within a product customization group.
Type Definition
type CustomizationGroupOption {
id: String
title: String
originalNetPrice: Float
originalPrice: Float
netPrice: Float
price: Float
image: String
tax: Float
group: CustomizationGroup
childGroup: CustomizationGroup
inventoryManagement: String
stock: Boolean
stockAlarm: Boolean
maxLength: Int
minLength: Int
rows: Int
}Fields
Relationships
CustomizationGroupOption represents a selectable option within a customization group. It maintains relationships with CustomizationGroup through the group field, which references the parent customization group this option belongs to, and through the childGroup field, which references any child customization group associated with this option.
Example
{
customizationGroupOption(id: "12345") {
id
title
originalNetPrice
originalPrice
netPrice
price
image
tax
stock
stockAlarm
maxLength
minLength
rows
group {
id
title
}
childGroup {
id
title
}
}
}Implements
This type does not implement any interfaces.