Skip to main content

CustomFieldCategory

A grouping of contact or company fields.

type CustomFieldCategory implements Node, Timestamped {
createdAt: DateTime!
customFields(
after: String
before: String
first: Int
last: Int
): CustomFieldConnection!
deletable: Boolean!
id: ID!
key: String!
name: String!
type: CustomFieldCategoryType!
updatedAt: DateTime!
}

Fields

CustomFieldCategory.createdAt ● DateTime! non-null scalar common

The date and time that the object was created.

CustomFieldCategory.customFields ● CustomFieldConnection! non-null object common

The custom fields belonging to the custom field category.

CustomFieldCategory.customFields.after ● String scalar common

Returns the elements in the list that come after the specified cursor.

CustomFieldCategory.customFields.before ● String scalar common

Returns the elements in the list that come before the specified cursor.

CustomFieldCategory.customFields.first ● Int scalar common

Returns the first n elements from the list.

CustomFieldCategory.customFields.last ● Int scalar common

Returns the last n elements from the list.

CustomFieldCategory.deletable ● Boolean! non-null scalar common

True if the custom field category can be deleted; false otherwise.

CustomFieldCategory.id ● ID! non-null scalar common

CustomFieldCategory.key ● String! non-null scalar common

An immutable identifier for the custom field category.

CustomFieldCategory.name ● String! non-null scalar common

The name of the custom field category.

CustomFieldCategory.type ● CustomFieldCategoryType! non-null enum common

The type of the custom field category.

CustomFieldCategory.updatedAt ● DateTime! non-null scalar common

The date and time that the object was last updated.

Interfaces

Node interface common

An object with an ID.

Timestamped interface common

An object with timestamp fields for when it was created and last updated.

Member of

CustomField object ● CustomFieldCategoryConnection object ● CustomFieldCategoryCreatePayload object ● CustomFieldCategoryDeletePayload object ● CustomFieldCategoryEdge object ● CustomFieldCategoryUpdatePayload object