ENUM

CustomFieldFieldTypeEnum

Data type for the CustomField

link GraphQL Schema definition

  • enum CustomFieldFieldTypeEnum {
  • # Text field
  • TEXT
  • # Boolean field
  • BOOLEAN
  • # Email address field
  • EMAIL_ADDRESS
  • # URL field
  • URL
  • # Single Select field, it only works if CustomFieldOption records are included
  • SINGLE_SELECT
  • # Multi Select field, it only works if CustomFieldOption records are included
  • MULTI_SELECT
  • # Integer field, this represents whole numbers with no decimal places, can be
  • # positive, negative, or zero
  • INTEGER
  • # Time field, this represents the time in a HH:MM:SS format
  • TIME
  • # Decimal field, this represents numbers that can include decimal places, allowing
  • # for fractional values. It can be positive, negative, or zero.
  • DECIMAL
  • # Date field, this will return a date in DD MMM YYYY format (e.g., 11 Nov 2024).
  • DATE
  • }