OBJECT

CustomField

Represents a custom field.

link GraphQL Schema definition

1type CustomField {
2
3# Custom field ID.
4id: ID
5
6# Custom field name.
7name: String
8
9# User profile section associated with the custom field.
10section: CustomFieldSection
11
12# Data type of the custom field.
13type: CustomFieldType
14
15}