OBJECT

ProductOption

Custom product property names like "Size", "Color", and "Material". Products are based on permutations of these options. A product may have a maximum of 3 options. 255 characters limit each.

link GraphQL Schema definition

  • type ProductOption implements Node {
  • id: ID!
  • # The product option’s name.
  • name: String!
  • # The corresponding value to the product option name.
  • values: [String!]!
  • }