OBJECT

__Field

Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.

link GraphQL Schema definition

1type __Field {
2
3name: String!
4
5description: String
6
7args(includeDeprecated: Boolean): [__InputValue!]!
8
9type: __Type!
10
11isDeprecated: Boolean!
12
13deprecationReason: String
14
15}