Enum
Enums are special scalars that can only have a defined set of values.
Fields
kind
must return__TypeKind.ENUM
.name
must return a String.description
may return a String or null .enumValues
: The list ofEnumValue
. There must be at least one and they must have unique names.- Accepts the argument
includeDeprecated
which defaults to false . If true , deprecated enum values are also returned.
- Accepts the argument
- All other fields must return null .