OBJECT
ProductConfigurationOption
Options by which you can configure a product.
For instance, if you're selling rope the available options might be the dimensions; 10mm, 20mm, 30mm, etc.
Price is either used as is, or if the configuration is using a price calculation (e.g. the rope is priced by length) it will be used in the calculation formula; e.g. (Length * Price).
link GraphQL Schema definition
- type ProductConfigurationOption {
- ID! :
- String :
- Price :
- # This will be set if the configuration requires price calculation, e.g. you might
- # sell rope and price it by length.
- ProductConfigurationPriceCalculation :
- }