OBJECT

AdvertOptionValue

Advert option value for an advert's option type supporting all field types.

link GraphQL Schema definition

  • type AdvertOptionValue implements Node {
  • # ID for the value. This value is less likely to change when the field values are
  • # unchanged but cannot guaranty.
  • id: ID!
  • # Option Type the value belongs to
  • optionType: OptionType!
  • # Option value for single-select or multi-select Option Type
  • optionValue: OptionValue
  • # Value for free-text Option Type
  • textValue: String
  • }