INPUT_OBJECT

CreateCustomFieldMutationInput

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

link GraphQL Schema definition

  • input CreateCustomFieldMutationInput {
  • # A descriptive name.
  • name: String!
  • # The type of custom field input this is.
  • type: CustomFieldType!
  • # Whether or not the value of this custom field must be unique throughout the
  • # system.
  • unique: Boolean!
  • # The type of entity this custom field will be associated with.
  • entity_type: CustomfielddataableType!
  • # 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