INPUT_OBJECT

OptionValueCreateOrUpdateMutationInput

Autogenerated input type of OptionValueCreateOrUpdateMutation

link GraphQL Schema definition

  • input OptionValueCreateOrUpdateMutationInput {
  • # A unique identifier for the client performing the mutation.
  • clientMutationId: String
  • # ID of the OptionValue to update
  • id: ID
  • # Name for the new OptionValue
  • name: String
  • # Presentation for the new OptionValue
  • displayName: String
  • # ID for parent OptionType. eg. if this OptionValue is 'Orange', the parent
  • # OptionType might be 'Colour' or 'Flavour'
  • optionTypeId: ID
  • # IDs used by external systems to fetch OptionValues
  • externalIds: [KeyValueInput!]
  • # A zero based index specifying the sort order in which the Option Values will be
  • # displayed (zero first)
  • position: Int
  • }