OBJECT

__InputValue

Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.

link GraphQL Schema definition

1type __InputValue {
2
3name: String!
10
4description: String
10
5type: __Type!
10
6# A GraphQL-formatted string representing the default value for this input value.
7defaultValue: String
10
8isDeprecated: Boolean!
10
9deprecationReason: String
11
12}