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!
4
5description: String
6
7type: __Type!
8
9# A GraphQL-formatted string representing the default value for this input value.
10defaultValue: String
11
12}