GraphQL INPUT_OBJECT

UpdateProductCharacteristicInput

Input for product characteristic update. Product characteristics are the options that customers select from in the cart.

link Definition

  • input UpdateProductCharacteristicInput {
  • # Unique ID of the product characteristic.
  • id: Int!
  • # Internal name of the product characteristic.
  • name: String
  • # Determines how the options for the product characteristic display in the cart.
  • controlType: ControlTypeEnum
  • # Unique ID of the header text element of the product characteristic.
  • headerTextElementId: Int
  • # Options of the product characteristic.
  • options: [CreateProductCharacteristicOptionInput]
  • }

link Required by