Skip to main content

CustomFieldCreateInput

Autogenerated input type of CustomFieldCreate

input CustomFieldCreateInput {
categoryId: ID!
clientMutationId: String
description: String
icon: CustomFieldIcon
isArray: Boolean!
key: String!
name: String!
options: [CustomFieldOptionInput!]
placeholder: String
required: Boolean
type: CustomFieldType!
}

Fields

CustomFieldCreateInput.categoryId ● ID! non-null scalar common

The ID of the custom field category.

CustomFieldCreateInput.clientMutationId ● String scalar common

A unique identifier for the client performing the mutation.

CustomFieldCreateInput.description ● String scalar common

A description of the custom field.

CustomFieldCreateInput.icon ● CustomFieldIcon enum common

The icon for the custom field.

CustomFieldCreateInput.isArray ● Boolean! non-null scalar common

Whether or not to allow multiple values per contact/company for this field.

CustomFieldCreateInput.key ● String! non-null scalar common

An immutable identifier for the custom field.

CustomFieldCreateInput.name ● String! non-null scalar common

The name of the custom field.

CustomFieldCreateInput.options ● [CustomFieldOptionInput!] list input common

The available options for the custom field if the type is DROPDOWN.

CustomFieldCreateInput.placeholder ● String scalar common

The text to show in the input field when the custom field is empty.

CustomFieldCreateInput.required ● Boolean scalar common

True if the custom field needs to be filled in the UI; false otherwise.

CustomFieldCreateInput.type ● CustomFieldType! non-null enum common

The custom field type.

Member of

customFieldCreate mutation