OBJECT
CustomOption
A single product custom option that can be configured before putting the product into the cart
link GraphQL Schema definition
- type CustomOption {
- # If the custom option is an image - this is the width
- : Int
- # If the custom option is an image - this is the height
- : Int
- # Maximum length if the custom option is a text
- : Int
- # Available values for this custom option
- : [CustomOptionValue]
- # Option identifier
- : ID
- # Is this option required
- : Boolean
- # Option title
- : String
- # Option type - text, drop_down, field, checkbox, radio
- : String
- }