CustomFieldUpdateInput
Autogenerated input type of CustomFieldUpdate
input CustomFieldUpdateInput {
categoryId: ID!
clientMutationId: String
customFieldId: ID!
description: String
handleType: String
icon: CustomFieldIcon
name: String!
options: [CustomFieldOptionInput!]
placeholder: String
required: Boolean
type: CustomFieldType!
}
Fields
CustomFieldUpdateInput.categoryId ● ID! non-null scalar common
The ID of the custom field category.
CustomFieldUpdateInput.clientMutationId ● String scalar common
A unique identifier for the client performing the mutation.
CustomFieldUpdateInput.customFieldId ● ID! non-null scalar common
The ID of the custom field to update.
CustomFieldUpdateInput.description ● String scalar common
A description of the custom field.
CustomFieldUpdateInput.handleType ● String scalar common
The handle type.
CustomFieldUpdateInput.icon ● CustomFieldIcon enum common
The icon for the custom field.
CustomFieldUpdateInput.name ● String! non-null scalar common
The name of the custom field.
CustomFieldUpdateInput.options ● [CustomFieldOptionInput!] list input common
The available options for the custom field if the type is
DROPDOWN.
CustomFieldUpdateInput.placeholder ● String scalar common
The text to show in the input field when the custom field is empty.
CustomFieldUpdateInput.required ● Boolean scalar common
True if the custom field needs to be filled in the UI; false otherwise.
CustomFieldUpdateInput.type ● CustomFieldType! non-null enum common
The custom field type.
Member of
customFieldUpdate mutation