OBJECT

__Type

The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the __TypeKind enum.

Depending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.

link GraphQL Schema definition

1type __Type {
2
3kind: __TypeKind!
4
5name: String
6
7description: String
8
9fields(includeDeprecated: Boolean): [__Field!]
10
11interfaces: [__Type!]
12
13possibleTypes: [__Type!]
14
15enumValues(includeDeprecated: Boolean): [__EnumValue!]
16
17inputFields: [__InputValue!]
18
19ofType: __Type
20
21}