ENUM

FieldTypeEnum

The character of the option type on how option values are stored.

link GraphQL Schema definition

  • enum FieldTypeEnum {
  • # An option type that can only have one option value assigned from a list of
  • # values.
  • SINGLE_SELECT
  • # An option type that can have multiple option values assigned from a list of
  • # values.
  • MULTI_SELECT
  • # An option type where a the seller can input any label rather than selecting from
  • # a fixed list of values
  • FREE_TEXT
  • # Integer field, this represents whole numbers with no decimal places, can be
  • # positive, negative, or zero
  • INTEGER
  • # Decimal field, this represents numbers that can include decimal places, allowing
  • # for fractional values. It can be positive, negative, or zero.
  • DECIMAL
  • }