GraphQL OBJECT

ProductCharacteristicOption

Option of the product characteristic.

link Definition

  • type ProductCharacteristicOption {
  • # Unique ID of the product characteristic option.
  • id: Int
  • # Internal name of the option.
  • name: String
  • # Text element to display for the option in the cart.
  • textElement: TextElement
  • # Product characteristic to which the option belongs.
  • productCharacteristic: ProductCharacteristic
  • # Running number of the option.
  • runningNumber: Int
  • # List of product selection items in which the option is used.
  • referringProductSelectionItems: [ProductSelectionItem]
  • }