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!
9
4description: String
9
5args: [__InputValue!]!
9
6type: __Type!
9
7isDeprecated: Boolean!
9
8deprecationReason: String
10
11}