INPUT_OBJECT

UpdateCustomFieldMutationInput

The input object that defines the fields for the updateCustomField mutation.

link GraphQL Schema definition

  • input UpdateCustomFieldMutationInput {
  • # A descriptive name.
  • name: String
  • # Whether or not the value of this custom field must be unique throughout the
  • # system.
  • unique: Boolean
  • # Whether or not this custom field must be filled in upon creation of an entity.
  • required: Boolean
  • # A list of values that are valid for this field, if this is a TEXT field. If this
  • # is empty, and the field is a TEXT type, then any value will be allowed.
  • enum_options: [String]
  • # A note about this entity.
  • note: NoteMutationInput
  • }

link Require by