OBJECT

EngineFieldPicklistOption

Represents one allowed option in a picklist.

link GraphQL Schema definition

1type EngineFieldPicklistOption {
2
3# The human-readable label for the option, such as "English-US" for a language
4# selector.
5key: String!
6
7# The machine-readable value that will be sent in the engine payload, such as
8# "en-us" for a language selector.
9value: String!
10
11}