OBJECT

__EnumValue

One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.

link GraphQL Schema definition

1type __EnumValue {
2
3name: String!
7
4description: String
7
5isDeprecated: Boolean!
7
6deprecationReason: String
8
9}