INPUT_OBJECT
CreateCustomFieldMutationInput
The input object that defines the fields for the createCustomField mutation.
link GraphQL Schema definition
- input CreateCustomFieldMutationInput {
- # A descriptive name.
- : String!
- # The type of custom field input this is.
- : CustomFieldType!
- # Whether or not the value of this custom field must be unique throughout the
- # system.
- : Boolean!
- # The type of entity this custom field will be associated with.
- : CustomfielddataableType!
- # Whether or not this custom field must be filled in upon creation of an entity.
- : 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.
- : [String]
- # A note about this entity.
- : NoteMutationInput
- }