GraphQL INPUT_OBJECT

CreateProductCharacteristicInput

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

link Definition

  • input CreateProductCharacteristicInput {
  • # Unique ID of the client account.
  • clientId: Int!
  • # 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