ENUM

__TypeKind

An enum describing what kind of type a given __Type is.

link GraphQL Schema definition

1enum __TypeKind {
2
3# Indicates this type is a scalar.
4SCALAR
5
6# Indicates this type is an object. fields and interfaces are valid fields.
7OBJECT
8
9# Indicates this type is an interface. fields and possibleTypes are valid fields.
10INTERFACE
11
12# Indicates this type is a union. possibleTypes is a valid field.
13UNION
14
15# Indicates this type is an enum. enumValues is a valid field.
16ENUM
17
18# Indicates this type is an input object. inputFields is a valid field.
19INPUT_OBJECT
20
21# Indicates this type is a list. ofType is a valid field.
22LIST
23
24# Indicates this type is a non-null. ofType is a valid field.
25NON_NULL
26}