Skip to content

Instantly share code, notes, and snippets.

@LunaticMuch
Last active April 23, 2023 08:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LunaticMuch/ef51273ab400d7691dfd5a8d9364e7b2 to your computer and use it in GitHub Desktop.
Save LunaticMuch/ef51273ab400d7691dfd5a8d9364e7b2 to your computer and use it in GitHub Desktop.
Introspected Simplified Schema
{
types: {
'TYPE::Author': {
kind: 'OBJECT',
name: 'Author',
description: 'A blog author',
interfaces: [],
fields: {
id: {
name: 'id',
description: 'The internal identifier of the author.',
type: {
kind: 'SCALAR',
name: 'ID',
description: 'The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID.',
id: 'TYPE::ID'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Author::id'
},
firstName: {
name: 'firstName',
description: 'The first name of the author. It might not be the legal name. It\'s just a name mate....',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: true,
deprecationReason: 'this is bad',
id: 'FIELD::Author::firstName'
},
lastName: {
name: 'lastName',
description: 'The last name of the author. It might be everything as we do not run Know Your Author.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Author::lastName'
},
posts: {
name: 'posts',
description: 'the list of Posts by this author',
type: {
kind: 'OBJECT',
name: 'Post',
description: 'A blog post or something else like carbonara recipe.',
interfaces: [],
fields: {
id: {
name: 'id',
description: 'The internal identifier we love to leak outside.',
type: {
kind: 'SCALAR',
name: 'ID',
description: 'The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID.',
id: 'TYPE::ID'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Post::id'
},
title: {
name: 'title',
description: 'The title of the post. There\'s no limit to the title, so possible the whole post content can be in the title.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Post::title'
},
author: {
name: 'author',
description: 'The author of the post. If not available, `John Doe` is return. If the other is really John Doe, you will never know.',
type: "[Circular]",
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Post::author'
},
votes: {
name: 'votes',
description: 'The number of votes... do not trust this field',
type: {
kind: 'SCALAR',
name: 'Int',
description: 'The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.',
id: 'TYPE::Int'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Post::votes'
}
},
id: 'TYPE::Post'
},
typeWrappers: [
'NON_NULL',
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Author::posts'
}
},
id: 'TYPE::Author'
},
'TYPE::ID': {
kind: 'SCALAR',
name: 'ID',
description: 'The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID.',
id: 'TYPE::ID'
},
'TYPE::String': {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
'TYPE::Post': {
kind: 'OBJECT',
name: 'Post',
description: 'A blog post or something else like carbonara recipe.',
interfaces: [],
fields: {
id: {
name: 'id',
description: 'The internal identifier we love to leak outside.',
type: {
kind: 'SCALAR',
name: 'ID',
description: 'The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID.',
id: 'TYPE::ID'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Post::id'
},
title: {
name: 'title',
description: 'The title of the post. There\'s no limit to the title, so possible the whole post content can be in the title.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Post::title'
},
author: {
name: 'author',
description: 'The author of the post. If not available, `John Doe` is return. If the other is really John Doe, you will never know.',
type: {
kind: 'OBJECT',
name: 'Author',
description: 'A blog author',
interfaces: [],
fields: {
id: {
name: 'id',
description: 'The internal identifier of the author.',
type: {
kind: 'SCALAR',
name: 'ID',
description: 'The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID.',
id: 'TYPE::ID'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Author::id'
},
firstName: {
name: 'firstName',
description: 'The first name of the author. It might not be the legal name. It\'s just a name mate....',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: true,
deprecationReason: 'this is bad',
id: 'FIELD::Author::firstName'
},
lastName: {
name: 'lastName',
description: 'The last name of the author. It might be everything as we do not run Know Your Author.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Author::lastName'
},
posts: {
name: 'posts',
description: 'the list of Posts by this author',
type: "[Circular]",
typeWrappers: [
'NON_NULL',
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Author::posts'
}
},
id: 'TYPE::Author'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Post::author'
},
votes: {
name: 'votes',
description: 'The number of votes... do not trust this field',
type: {
kind: 'SCALAR',
name: 'Int',
description: 'The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.',
id: 'TYPE::Int'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Post::votes'
}
},
id: 'TYPE::Post'
},
'TYPE::Int': {
kind: 'SCALAR',
name: 'Int',
description: 'The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.',
id: 'TYPE::Int'
},
'TYPE::Query': {
kind: 'OBJECT',
name: 'Query',
description: 'This is the root of the query type!!',
interfaces: [],
fields: {
posts: {
name: 'posts',
description: 'Fetch all posts without any arguments. Default order is funky.',
type: {
kind: 'OBJECT',
name: 'Post',
description: 'A blog post or something else like carbonara recipe.',
interfaces: [],
fields: {
id: {
name: 'id',
description: 'The internal identifier we love to leak outside.',
type: {
kind: 'SCALAR',
name: 'ID',
description: 'The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID.',
id: 'TYPE::ID'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Post::id'
},
title: {
name: 'title',
description: 'The title of the post. There\'s no limit to the title, so possible the whole post content can be in the title.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Post::title'
},
author: {
name: 'author',
description: 'The author of the post. If not available, `John Doe` is return. If the other is really John Doe, you will never know.',
type: {
kind: 'OBJECT',
name: 'Author',
description: 'A blog author',
interfaces: [],
fields: {
id: {
name: 'id',
description: 'The internal identifier of the author.',
type: {
kind: 'SCALAR',
name: 'ID',
description: 'The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID.',
id: 'TYPE::ID'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Author::id'
},
firstName: {
name: 'firstName',
description: 'The first name of the author. It might not be the legal name. It\'s just a name mate....',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: true,
deprecationReason: 'this is bad',
id: 'FIELD::Author::firstName'
},
lastName: {
name: 'lastName',
description: 'The last name of the author. It might be everything as we do not run Know Your Author.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Author::lastName'
},
posts: {
name: 'posts',
description: 'the list of Posts by this author',
type: "[Circular]",
typeWrappers: [
'NON_NULL',
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Author::posts'
}
},
id: 'TYPE::Author'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Post::author'
},
votes: {
name: 'votes',
description: 'The number of votes... do not trust this field',
type: {
kind: 'SCALAR',
name: 'Int',
description: 'The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.',
id: 'TYPE::Int'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Post::votes'
}
},
id: 'TYPE::Post'
},
typeWrappers: [
'LIST'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Query::posts'
}
},
id: 'TYPE::Query'
},
'TYPE::Mutation': {
kind: 'OBJECT',
name: 'Mutation',
description: 'This is the root of the mutation type - where all problems start!',
interfaces: [],
fields: {
upvotePost: {
name: 'upvotePost',
description: 'Upvote a post given the identifier. Once upvoted, it can\'t be downvoted anymore.',
type: {
kind: 'OBJECT',
name: 'Post',
description: 'A blog post or something else like carbonara recipe.',
interfaces: [],
fields: {
id: {
name: 'id',
description: 'The internal identifier we love to leak outside.',
type: {
kind: 'SCALAR',
name: 'ID',
description: 'The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID.',
id: 'TYPE::ID'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Post::id'
},
title: {
name: 'title',
description: 'The title of the post. There\'s no limit to the title, so possible the whole post content can be in the title.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Post::title'
},
author: {
name: 'author',
description: 'The author of the post. If not available, `John Doe` is return. If the other is really John Doe, you will never know.',
type: {
kind: 'OBJECT',
name: 'Author',
description: 'A blog author',
interfaces: [],
fields: {
id: {
name: 'id',
description: 'The internal identifier of the author.',
type: {
kind: 'SCALAR',
name: 'ID',
description: 'The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID.',
id: 'TYPE::ID'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Author::id'
},
firstName: {
name: 'firstName',
description: 'The first name of the author. It might not be the legal name. It\'s just a name mate....',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: true,
deprecationReason: 'this is bad',
id: 'FIELD::Author::firstName'
},
lastName: {
name: 'lastName',
description: 'The last name of the author. It might be everything as we do not run Know Your Author.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Author::lastName'
},
posts: {
name: 'posts',
description: 'the list of Posts by this author',
type: "[Circular]",
typeWrappers: [
'NON_NULL',
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Author::posts'
}
},
id: 'TYPE::Author'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Post::author'
},
votes: {
name: 'votes',
description: 'The number of votes... do not trust this field',
type: {
kind: 'SCALAR',
name: 'Int',
description: 'The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.',
id: 'TYPE::Int'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Post::votes'
}
},
id: 'TYPE::Post'
},
typeWrappers: [],
args: {
postId: {
name: 'postId',
description: undefined,
type: {
kind: 'SCALAR',
name: 'ID',
description: 'The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID.',
id: 'TYPE::ID'
},
typeWrappers: [
'NON_NULL'
],
defaultValue: undefined,
id: 'ARGUMENT::Mutation::upvotePost::postId'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Mutation::upvotePost'
}
},
id: 'TYPE::Mutation'
},
'TYPE::Boolean': {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
'TYPE::__Schema': {
kind: 'OBJECT',
name: '__Schema',
description: 'A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.',
interfaces: [],
fields: {
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Schema::description'
},
types: {
name: 'types',
description: 'A list of all types supported by this server.',
type: {
kind: 'OBJECT',
name: '__Type',
description: 'The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByURL`, 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.',
interfaces: [],
fields: {
kind: {
name: 'kind',
description: undefined,
type: {
kind: 'ENUM',
name: '__TypeKind',
description: 'An enum describing what kind of type a given `__Type` is.',
enumValues: [
{
name: 'SCALAR',
description: 'Indicates this type is a scalar.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'OBJECT',
description: 'Indicates this type is an object. `fields` and `interfaces` are valid fields.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INTERFACE',
description: 'Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'UNION',
description: 'Indicates this type is a union. `possibleTypes` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'ENUM',
description: 'Indicates this type is an enum. `enumValues` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INPUT_OBJECT',
description: 'Indicates this type is an input object. `inputFields` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'LIST',
description: 'Indicates this type is a list. `ofType` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'NON_NULL',
description: 'Indicates this type is a non-null. `ofType` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
}
],
id: 'TYPE::__TypeKind'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::kind'
},
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::description'
},
specifiedByURL: {
name: 'specifiedByURL',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::specifiedByURL'
},
fields: {
name: 'fields',
description: undefined,
type: {
kind: 'OBJECT',
name: '__Field',
description: '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.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::description'
},
args: {
name: 'args',
description: undefined,
type: {
kind: 'OBJECT',
name: '__InputValue',
description: '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.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::description'
},
type: {
name: 'type',
description: undefined,
type: "[Circular]",
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::type'
},
defaultValue: {
name: 'defaultValue',
description: 'A GraphQL-formatted string representing the default value for this input value.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::defaultValue'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::deprecationReason'
}
},
id: 'TYPE::__InputValue'
},
typeWrappers: [
'NON_NULL',
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Field::args::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::args'
},
type: {
name: 'type',
description: undefined,
type: "[Circular]",
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::type'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::deprecationReason'
}
},
id: 'TYPE::__Field'
},
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::fields::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::fields'
},
interfaces: {
name: 'interfaces',
description: undefined,
type: "[Circular]",
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::interfaces'
},
possibleTypes: {
name: 'possibleTypes',
description: undefined,
type: "[Circular]",
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::possibleTypes'
},
enumValues: {
name: 'enumValues',
description: undefined,
type: {
kind: 'OBJECT',
name: '__EnumValue',
description: 'One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::description'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::deprecationReason'
}
},
id: 'TYPE::__EnumValue'
},
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::enumValues::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::enumValues'
},
inputFields: {
name: 'inputFields',
description: undefined,
type: {
kind: 'OBJECT',
name: '__InputValue',
description: '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.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::description'
},
type: {
name: 'type',
description: undefined,
type: "[Circular]",
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::type'
},
defaultValue: {
name: 'defaultValue',
description: 'A GraphQL-formatted string representing the default value for this input value.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::defaultValue'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::deprecationReason'
}
},
id: 'TYPE::__InputValue'
},
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::inputFields::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::inputFields'
},
ofType: {
name: 'ofType',
description: undefined,
type: "[Circular]",
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::ofType'
}
},
id: 'TYPE::__Type'
},
typeWrappers: [
'NON_NULL',
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Schema::types'
},
queryType: {
name: 'queryType',
description: 'The type that query operations will be rooted at.',
type: {
kind: 'OBJECT',
name: '__Type',
description: 'The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByURL`, 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.',
interfaces: [],
fields: {
kind: {
name: 'kind',
description: undefined,
type: {
kind: 'ENUM',
name: '__TypeKind',
description: 'An enum describing what kind of type a given `__Type` is.',
enumValues: [
{
name: 'SCALAR',
description: 'Indicates this type is a scalar.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'OBJECT',
description: 'Indicates this type is an object. `fields` and `interfaces` are valid fields.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INTERFACE',
description: 'Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'UNION',
description: 'Indicates this type is a union. `possibleTypes` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'ENUM',
description: 'Indicates this type is an enum. `enumValues` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INPUT_OBJECT',
description: 'Indicates this type is an input object. `inputFields` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'LIST',
description: 'Indicates this type is a list. `ofType` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'NON_NULL',
description: 'Indicates this type is a non-null. `ofType` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
}
],
id: 'TYPE::__TypeKind'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::kind'
},
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::description'
},
specifiedByURL: {
name: 'specifiedByURL',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::specifiedByURL'
},
fields: {
name: 'fields',
description: undefined,
type: {
kind: 'OBJECT',
name: '__Field',
description: '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.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::description'
},
args: {
name: 'args',
description: undefined,
type: {
kind: 'OBJECT',
name: '__InputValue',
description: '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.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::description'
},
type: {
name: 'type',
description: undefined,
type: "[Circular]",
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::type'
},
defaultValue: {
name: 'defaultValue',
description: 'A GraphQL-formatted string representing the default value for this input value.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::defaultValue'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::deprecationReason'
}
},
id: 'TYPE::__InputValue'
},
typeWrappers: [
'NON_NULL',
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Field::args::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::args'
},
type: {
name: 'type',
description: undefined,
type: "[Circular]",
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::type'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::deprecationReason'
}
},
id: 'TYPE::__Field'
},
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::fields::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::fields'
},
interfaces: {
name: 'interfaces',
description: undefined,
type: "[Circular]",
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::interfaces'
},
possibleTypes: {
name: 'possibleTypes',
description: undefined,
type: "[Circular]",
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::possibleTypes'
},
enumValues: {
name: 'enumValues',
description: undefined,
type: {
kind: 'OBJECT',
name: '__EnumValue',
description: 'One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::description'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::deprecationReason'
}
},
id: 'TYPE::__EnumValue'
},
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::enumValues::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::enumValues'
},
inputFields: {
name: 'inputFields',
description: undefined,
type: {
kind: 'OBJECT',
name: '__InputValue',
description: '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.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::description'
},
type: {
name: 'type',
description: undefined,
type: "[Circular]",
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::type'
},
defaultValue: {
name: 'defaultValue',
description: 'A GraphQL-formatted string representing the default value for this input value.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::defaultValue'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::deprecationReason'
}
},
id: 'TYPE::__InputValue'
},
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::inputFields::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::inputFields'
},
ofType: {
name: 'ofType',
description: undefined,
type: "[Circular]",
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::ofType'
}
},
id: 'TYPE::__Type'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Schema::queryType'
},
mutationType: {
name: 'mutationType',
description: 'If this server supports mutation, the type that mutation operations will be rooted at.',
type: {
kind: 'OBJECT',
name: '__Type',
description: 'The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByURL`, 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.',
interfaces: [],
fields: {
kind: {
name: 'kind',
description: undefined,
type: {
kind: 'ENUM',
name: '__TypeKind',
description: 'An enum describing what kind of type a given `__Type` is.',
enumValues: [
{
name: 'SCALAR',
description: 'Indicates this type is a scalar.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'OBJECT',
description: 'Indicates this type is an object. `fields` and `interfaces` are valid fields.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INTERFACE',
description: 'Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'UNION',
description: 'Indicates this type is a union. `possibleTypes` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'ENUM',
description: 'Indicates this type is an enum. `enumValues` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INPUT_OBJECT',
description: 'Indicates this type is an input object. `inputFields` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'LIST',
description: 'Indicates this type is a list. `ofType` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'NON_NULL',
description: 'Indicates this type is a non-null. `ofType` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
}
],
id: 'TYPE::__TypeKind'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::kind'
},
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::description'
},
specifiedByURL: {
name: 'specifiedByURL',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::specifiedByURL'
},
fields: {
name: 'fields',
description: undefined,
type: {
kind: 'OBJECT',
name: '__Field',
description: '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.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::description'
},
args: {
name: 'args',
description: undefined,
type: {
kind: 'OBJECT',
name: '__InputValue',
description: '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.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::description'
},
type: {
name: 'type',
description: undefined,
type: "[Circular]",
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::type'
},
defaultValue: {
name: 'defaultValue',
description: 'A GraphQL-formatted string representing the default value for this input value.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::defaultValue'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::deprecationReason'
}
},
id: 'TYPE::__InputValue'
},
typeWrappers: [
'NON_NULL',
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Field::args::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::args'
},
type: {
name: 'type',
description: undefined,
type: "[Circular]",
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::type'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::deprecationReason'
}
},
id: 'TYPE::__Field'
},
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::fields::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::fields'
},
interfaces: {
name: 'interfaces',
description: undefined,
type: "[Circular]",
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::interfaces'
},
possibleTypes: {
name: 'possibleTypes',
description: undefined,
type: "[Circular]",
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::possibleTypes'
},
enumValues: {
name: 'enumValues',
description: undefined,
type: {
kind: 'OBJECT',
name: '__EnumValue',
description: 'One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::description'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::deprecationReason'
}
},
id: 'TYPE::__EnumValue'
},
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::enumValues::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::enumValues'
},
inputFields: {
name: 'inputFields',
description: undefined,
type: {
kind: 'OBJECT',
name: '__InputValue',
description: '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.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::description'
},
type: {
name: 'type',
description: undefined,
type: "[Circular]",
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::type'
},
defaultValue: {
name: 'defaultValue',
description: 'A GraphQL-formatted string representing the default value for this input value.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::defaultValue'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::deprecationReason'
}
},
id: 'TYPE::__InputValue'
},
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::inputFields::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::inputFields'
},
ofType: {
name: 'ofType',
description: undefined,
type: "[Circular]",
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::ofType'
}
},
id: 'TYPE::__Type'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Schema::mutationType'
},
subscriptionType: {
name: 'subscriptionType',
description: 'If this server support subscription, the type that subscription operations will be rooted at.',
type: {
kind: 'OBJECT',
name: '__Type',
description: 'The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByURL`, 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.',
interfaces: [],
fields: {
kind: {
name: 'kind',
description: undefined,
type: {
kind: 'ENUM',
name: '__TypeKind',
description: 'An enum describing what kind of type a given `__Type` is.',
enumValues: [
{
name: 'SCALAR',
description: 'Indicates this type is a scalar.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'OBJECT',
description: 'Indicates this type is an object. `fields` and `interfaces` are valid fields.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INTERFACE',
description: 'Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'UNION',
description: 'Indicates this type is a union. `possibleTypes` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'ENUM',
description: 'Indicates this type is an enum. `enumValues` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INPUT_OBJECT',
description: 'Indicates this type is an input object. `inputFields` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'LIST',
description: 'Indicates this type is a list. `ofType` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'NON_NULL',
description: 'Indicates this type is a non-null. `ofType` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
}
],
id: 'TYPE::__TypeKind'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::kind'
},
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::description'
},
specifiedByURL: {
name: 'specifiedByURL',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::specifiedByURL'
},
fields: {
name: 'fields',
description: undefined,
type: {
kind: 'OBJECT',
name: '__Field',
description: '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.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::description'
},
args: {
name: 'args',
description: undefined,
type: {
kind: 'OBJECT',
name: '__InputValue',
description: '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.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::description'
},
type: {
name: 'type',
description: undefined,
type: "[Circular]",
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::type'
},
defaultValue: {
name: 'defaultValue',
description: 'A GraphQL-formatted string representing the default value for this input value.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::defaultValue'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::deprecationReason'
}
},
id: 'TYPE::__InputValue'
},
typeWrappers: [
'NON_NULL',
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Field::args::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::args'
},
type: {
name: 'type',
description: undefined,
type: "[Circular]",
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::type'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::deprecationReason'
}
},
id: 'TYPE::__Field'
},
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::fields::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::fields'
},
interfaces: {
name: 'interfaces',
description: undefined,
type: "[Circular]",
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::interfaces'
},
possibleTypes: {
name: 'possibleTypes',
description: undefined,
type: "[Circular]",
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::possibleTypes'
},
enumValues: {
name: 'enumValues',
description: undefined,
type: {
kind: 'OBJECT',
name: '__EnumValue',
description: 'One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::description'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::deprecationReason'
}
},
id: 'TYPE::__EnumValue'
},
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::enumValues::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::enumValues'
},
inputFields: {
name: 'inputFields',
description: undefined,
type: {
kind: 'OBJECT',
name: '__InputValue',
description: '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.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::description'
},
type: {
name: 'type',
description: undefined,
type: "[Circular]",
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::type'
},
defaultValue: {
name: 'defaultValue',
description: 'A GraphQL-formatted string representing the default value for this input value.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::defaultValue'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::deprecationReason'
}
},
id: 'TYPE::__InputValue'
},
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::inputFields::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::inputFields'
},
ofType: {
name: 'ofType',
description: undefined,
type: "[Circular]",
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::ofType'
}
},
id: 'TYPE::__Type'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Schema::subscriptionType'
},
directives: {
name: 'directives',
description: 'A list of all directives supported by this server.',
type: {
kind: 'OBJECT',
name: '__Directive',
description: 'A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL\'s execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Directive::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Directive::description'
},
isRepeatable: {
name: 'isRepeatable',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Directive::isRepeatable'
},
locations: {
name: 'locations',
description: undefined,
type: {
kind: 'ENUM',
name: '__DirectiveLocation',
description: 'A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.',
enumValues: [
{
name: 'QUERY',
description: 'Location adjacent to a query operation.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'MUTATION',
description: 'Location adjacent to a mutation operation.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'SUBSCRIPTION',
description: 'Location adjacent to a subscription operation.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'FIELD',
description: 'Location adjacent to a field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'FRAGMENT_DEFINITION',
description: 'Location adjacent to a fragment definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'FRAGMENT_SPREAD',
description: 'Location adjacent to a fragment spread.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INLINE_FRAGMENT',
description: 'Location adjacent to an inline fragment.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'VARIABLE_DEFINITION',
description: 'Location adjacent to a variable definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'SCHEMA',
description: 'Location adjacent to a schema definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'SCALAR',
description: 'Location adjacent to a scalar definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'OBJECT',
description: 'Location adjacent to an object type definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'FIELD_DEFINITION',
description: 'Location adjacent to a field definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'ARGUMENT_DEFINITION',
description: 'Location adjacent to an argument definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INTERFACE',
description: 'Location adjacent to an interface definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'UNION',
description: 'Location adjacent to a union definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'ENUM',
description: 'Location adjacent to an enum definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'ENUM_VALUE',
description: 'Location adjacent to an enum value definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INPUT_OBJECT',
description: 'Location adjacent to an input object type definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INPUT_FIELD_DEFINITION',
description: 'Location adjacent to an input object field definition.',
isDeprecated: false,
deprecationReason: undefined
}
],
id: 'TYPE::__DirectiveLocation'
},
typeWrappers: [
'NON_NULL',
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Directive::locations'
},
args: {
name: 'args',
description: undefined,
type: {
kind: 'OBJECT',
name: '__InputValue',
description: '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.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::description'
},
type: {
name: 'type',
description: undefined,
type: {
kind: 'OBJECT',
name: '__Type',
description: 'The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByURL`, 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.',
interfaces: [],
fields: {
kind: {
name: 'kind',
description: undefined,
type: {
kind: 'ENUM',
name: '__TypeKind',
description: 'An enum describing what kind of type a given `__Type` is.',
enumValues: [
{
name: 'SCALAR',
description: 'Indicates this type is a scalar.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'OBJECT',
description: 'Indicates this type is an object. `fields` and `interfaces` are valid fields.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INTERFACE',
description: 'Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'UNION',
description: 'Indicates this type is a union. `possibleTypes` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'ENUM',
description: 'Indicates this type is an enum. `enumValues` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INPUT_OBJECT',
description: 'Indicates this type is an input object. `inputFields` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'LIST',
description: 'Indicates this type is a list. `ofType` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'NON_NULL',
description: 'Indicates this type is a non-null. `ofType` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
}
],
id: 'TYPE::__TypeKind'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::kind'
},
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::description'
},
specifiedByURL: {
name: 'specifiedByURL',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::specifiedByURL'
},
fields: {
name: 'fields',
description: undefined,
type: {
kind: 'OBJECT',
name: '__Field',
description: '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.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::description'
},
args: {
name: 'args',
description: undefined,
type: "[Circular]",
typeWrappers: [
'NON_NULL',
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Field::args::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::args'
},
type: {
name: 'type',
description: undefined,
type: "[Circular]",
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::type'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::deprecationReason'
}
},
id: 'TYPE::__Field'
},
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::fields::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::fields'
},
interfaces: {
name: 'interfaces',
description: undefined,
type: "[Circular]",
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::interfaces'
},
possibleTypes: {
name: 'possibleTypes',
description: undefined,
type: "[Circular]",
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::possibleTypes'
},
enumValues: {
name: 'enumValues',
description: undefined,
type: {
kind: 'OBJECT',
name: '__EnumValue',
description: 'One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::description'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::deprecationReason'
}
},
id: 'TYPE::__EnumValue'
},
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::enumValues::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::enumValues'
},
inputFields: {
name: 'inputFields',
description: undefined,
type: "[Circular]",
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::inputFields::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::inputFields'
},
ofType: {
name: 'ofType',
description: undefined,
type: "[Circular]",
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::ofType'
}
},
id: 'TYPE::__Type'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::type'
},
defaultValue: {
name: 'defaultValue',
description: 'A GraphQL-formatted string representing the default value for this input value.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::defaultValue'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::deprecationReason'
}
},
id: 'TYPE::__InputValue'
},
typeWrappers: [
'NON_NULL',
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Directive::args::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Directive::args'
}
},
id: 'TYPE::__Directive'
},
typeWrappers: [
'NON_NULL',
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Schema::directives'
}
},
id: 'TYPE::__Schema'
},
'TYPE::__Type': {
kind: 'OBJECT',
name: '__Type',
description: 'The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByURL`, 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.',
interfaces: [],
fields: {
kind: {
name: 'kind',
description: undefined,
type: {
kind: 'ENUM',
name: '__TypeKind',
description: 'An enum describing what kind of type a given `__Type` is.',
enumValues: [
{
name: 'SCALAR',
description: 'Indicates this type is a scalar.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'OBJECT',
description: 'Indicates this type is an object. `fields` and `interfaces` are valid fields.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INTERFACE',
description: 'Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'UNION',
description: 'Indicates this type is a union. `possibleTypes` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'ENUM',
description: 'Indicates this type is an enum. `enumValues` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INPUT_OBJECT',
description: 'Indicates this type is an input object. `inputFields` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'LIST',
description: 'Indicates this type is a list. `ofType` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'NON_NULL',
description: 'Indicates this type is a non-null. `ofType` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
}
],
id: 'TYPE::__TypeKind'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::kind'
},
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::description'
},
specifiedByURL: {
name: 'specifiedByURL',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::specifiedByURL'
},
fields: {
name: 'fields',
description: undefined,
type: {
kind: 'OBJECT',
name: '__Field',
description: '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.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::description'
},
args: {
name: 'args',
description: undefined,
type: {
kind: 'OBJECT',
name: '__InputValue',
description: '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.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::description'
},
type: {
name: 'type',
description: undefined,
type: "[Circular]",
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::type'
},
defaultValue: {
name: 'defaultValue',
description: 'A GraphQL-formatted string representing the default value for this input value.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::defaultValue'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::deprecationReason'
}
},
id: 'TYPE::__InputValue'
},
typeWrappers: [
'NON_NULL',
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Field::args::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::args'
},
type: {
name: 'type',
description: undefined,
type: "[Circular]",
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::type'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::deprecationReason'
}
},
id: 'TYPE::__Field'
},
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::fields::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::fields'
},
interfaces: {
name: 'interfaces',
description: undefined,
type: "[Circular]",
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::interfaces'
},
possibleTypes: {
name: 'possibleTypes',
description: undefined,
type: "[Circular]",
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::possibleTypes'
},
enumValues: {
name: 'enumValues',
description: undefined,
type: {
kind: 'OBJECT',
name: '__EnumValue',
description: 'One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::description'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::deprecationReason'
}
},
id: 'TYPE::__EnumValue'
},
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::enumValues::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::enumValues'
},
inputFields: {
name: 'inputFields',
description: undefined,
type: {
kind: 'OBJECT',
name: '__InputValue',
description: '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.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::description'
},
type: {
name: 'type',
description: undefined,
type: "[Circular]",
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::type'
},
defaultValue: {
name: 'defaultValue',
description: 'A GraphQL-formatted string representing the default value for this input value.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::defaultValue'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::deprecationReason'
}
},
id: 'TYPE::__InputValue'
},
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::inputFields::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::inputFields'
},
ofType: {
name: 'ofType',
description: undefined,
type: "[Circular]",
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::ofType'
}
},
id: 'TYPE::__Type'
},
'TYPE::__TypeKind': {
kind: 'ENUM',
name: '__TypeKind',
description: 'An enum describing what kind of type a given `__Type` is.',
enumValues: [
{
name: 'SCALAR',
description: 'Indicates this type is a scalar.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'OBJECT',
description: 'Indicates this type is an object. `fields` and `interfaces` are valid fields.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INTERFACE',
description: 'Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'UNION',
description: 'Indicates this type is a union. `possibleTypes` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'ENUM',
description: 'Indicates this type is an enum. `enumValues` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INPUT_OBJECT',
description: 'Indicates this type is an input object. `inputFields` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'LIST',
description: 'Indicates this type is a list. `ofType` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'NON_NULL',
description: 'Indicates this type is a non-null. `ofType` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
}
],
id: 'TYPE::__TypeKind'
},
'TYPE::__Field': {
kind: 'OBJECT',
name: '__Field',
description: '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.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::description'
},
args: {
name: 'args',
description: undefined,
type: {
kind: 'OBJECT',
name: '__InputValue',
description: '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.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::description'
},
type: {
name: 'type',
description: undefined,
type: {
kind: 'OBJECT',
name: '__Type',
description: 'The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByURL`, 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.',
interfaces: [],
fields: {
kind: {
name: 'kind',
description: undefined,
type: {
kind: 'ENUM',
name: '__TypeKind',
description: 'An enum describing what kind of type a given `__Type` is.',
enumValues: [
{
name: 'SCALAR',
description: 'Indicates this type is a scalar.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'OBJECT',
description: 'Indicates this type is an object. `fields` and `interfaces` are valid fields.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INTERFACE',
description: 'Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'UNION',
description: 'Indicates this type is a union. `possibleTypes` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'ENUM',
description: 'Indicates this type is an enum. `enumValues` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INPUT_OBJECT',
description: 'Indicates this type is an input object. `inputFields` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'LIST',
description: 'Indicates this type is a list. `ofType` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'NON_NULL',
description: 'Indicates this type is a non-null. `ofType` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
}
],
id: 'TYPE::__TypeKind'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::kind'
},
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::description'
},
specifiedByURL: {
name: 'specifiedByURL',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::specifiedByURL'
},
fields: {
name: 'fields',
description: undefined,
type: "[Circular]",
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::fields::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::fields'
},
interfaces: {
name: 'interfaces',
description: undefined,
type: "[Circular]",
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::interfaces'
},
possibleTypes: {
name: 'possibleTypes',
description: undefined,
type: "[Circular]",
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::possibleTypes'
},
enumValues: {
name: 'enumValues',
description: undefined,
type: {
kind: 'OBJECT',
name: '__EnumValue',
description: 'One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::description'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::deprecationReason'
}
},
id: 'TYPE::__EnumValue'
},
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::enumValues::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::enumValues'
},
inputFields: {
name: 'inputFields',
description: undefined,
type: "[Circular]",
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::inputFields::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::inputFields'
},
ofType: {
name: 'ofType',
description: undefined,
type: "[Circular]",
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::ofType'
}
},
id: 'TYPE::__Type'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::type'
},
defaultValue: {
name: 'defaultValue',
description: 'A GraphQL-formatted string representing the default value for this input value.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::defaultValue'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::deprecationReason'
}
},
id: 'TYPE::__InputValue'
},
typeWrappers: [
'NON_NULL',
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Field::args::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::args'
},
type: {
name: 'type',
description: undefined,
type: {
kind: 'OBJECT',
name: '__Type',
description: 'The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByURL`, 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.',
interfaces: [],
fields: {
kind: {
name: 'kind',
description: undefined,
type: {
kind: 'ENUM',
name: '__TypeKind',
description: 'An enum describing what kind of type a given `__Type` is.',
enumValues: [
{
name: 'SCALAR',
description: 'Indicates this type is a scalar.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'OBJECT',
description: 'Indicates this type is an object. `fields` and `interfaces` are valid fields.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INTERFACE',
description: 'Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'UNION',
description: 'Indicates this type is a union. `possibleTypes` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'ENUM',
description: 'Indicates this type is an enum. `enumValues` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INPUT_OBJECT',
description: 'Indicates this type is an input object. `inputFields` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'LIST',
description: 'Indicates this type is a list. `ofType` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'NON_NULL',
description: 'Indicates this type is a non-null. `ofType` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
}
],
id: 'TYPE::__TypeKind'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::kind'
},
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::description'
},
specifiedByURL: {
name: 'specifiedByURL',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::specifiedByURL'
},
fields: {
name: 'fields',
description: undefined,
type: "[Circular]",
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::fields::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::fields'
},
interfaces: {
name: 'interfaces',
description: undefined,
type: "[Circular]",
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::interfaces'
},
possibleTypes: {
name: 'possibleTypes',
description: undefined,
type: "[Circular]",
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::possibleTypes'
},
enumValues: {
name: 'enumValues',
description: undefined,
type: {
kind: 'OBJECT',
name: '__EnumValue',
description: 'One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::description'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::deprecationReason'
}
},
id: 'TYPE::__EnumValue'
},
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::enumValues::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::enumValues'
},
inputFields: {
name: 'inputFields',
description: undefined,
type: {
kind: 'OBJECT',
name: '__InputValue',
description: '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.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::description'
},
type: {
name: 'type',
description: undefined,
type: "[Circular]",
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::type'
},
defaultValue: {
name: 'defaultValue',
description: 'A GraphQL-formatted string representing the default value for this input value.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::defaultValue'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::deprecationReason'
}
},
id: 'TYPE::__InputValue'
},
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::inputFields::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::inputFields'
},
ofType: {
name: 'ofType',
description: undefined,
type: "[Circular]",
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::ofType'
}
},
id: 'TYPE::__Type'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::type'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::deprecationReason'
}
},
id: 'TYPE::__Field'
},
'TYPE::__InputValue': {
kind: 'OBJECT',
name: '__InputValue',
description: '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.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::description'
},
type: {
name: 'type',
description: undefined,
type: {
kind: 'OBJECT',
name: '__Type',
description: 'The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByURL`, 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.',
interfaces: [],
fields: {
kind: {
name: 'kind',
description: undefined,
type: {
kind: 'ENUM',
name: '__TypeKind',
description: 'An enum describing what kind of type a given `__Type` is.',
enumValues: [
{
name: 'SCALAR',
description: 'Indicates this type is a scalar.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'OBJECT',
description: 'Indicates this type is an object. `fields` and `interfaces` are valid fields.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INTERFACE',
description: 'Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'UNION',
description: 'Indicates this type is a union. `possibleTypes` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'ENUM',
description: 'Indicates this type is an enum. `enumValues` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INPUT_OBJECT',
description: 'Indicates this type is an input object. `inputFields` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'LIST',
description: 'Indicates this type is a list. `ofType` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'NON_NULL',
description: 'Indicates this type is a non-null. `ofType` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
}
],
id: 'TYPE::__TypeKind'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::kind'
},
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::description'
},
specifiedByURL: {
name: 'specifiedByURL',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::specifiedByURL'
},
fields: {
name: 'fields',
description: undefined,
type: {
kind: 'OBJECT',
name: '__Field',
description: '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.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::description'
},
args: {
name: 'args',
description: undefined,
type: "[Circular]",
typeWrappers: [
'NON_NULL',
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Field::args::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::args'
},
type: {
name: 'type',
description: undefined,
type: "[Circular]",
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::type'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::deprecationReason'
}
},
id: 'TYPE::__Field'
},
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::fields::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::fields'
},
interfaces: {
name: 'interfaces',
description: undefined,
type: "[Circular]",
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::interfaces'
},
possibleTypes: {
name: 'possibleTypes',
description: undefined,
type: "[Circular]",
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::possibleTypes'
},
enumValues: {
name: 'enumValues',
description: undefined,
type: {
kind: 'OBJECT',
name: '__EnumValue',
description: 'One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::description'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::deprecationReason'
}
},
id: 'TYPE::__EnumValue'
},
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::enumValues::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::enumValues'
},
inputFields: {
name: 'inputFields',
description: undefined,
type: "[Circular]",
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::inputFields::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::inputFields'
},
ofType: {
name: 'ofType',
description: undefined,
type: "[Circular]",
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::ofType'
}
},
id: 'TYPE::__Type'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::type'
},
defaultValue: {
name: 'defaultValue',
description: 'A GraphQL-formatted string representing the default value for this input value.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::defaultValue'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::deprecationReason'
}
},
id: 'TYPE::__InputValue'
},
'TYPE::__EnumValue': {
kind: 'OBJECT',
name: '__EnumValue',
description: 'One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::description'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::deprecationReason'
}
},
id: 'TYPE::__EnumValue'
},
'TYPE::__Directive': {
kind: 'OBJECT',
name: '__Directive',
description: 'A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL\'s execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Directive::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Directive::description'
},
isRepeatable: {
name: 'isRepeatable',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Directive::isRepeatable'
},
locations: {
name: 'locations',
description: undefined,
type: {
kind: 'ENUM',
name: '__DirectiveLocation',
description: 'A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.',
enumValues: [
{
name: 'QUERY',
description: 'Location adjacent to a query operation.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'MUTATION',
description: 'Location adjacent to a mutation operation.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'SUBSCRIPTION',
description: 'Location adjacent to a subscription operation.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'FIELD',
description: 'Location adjacent to a field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'FRAGMENT_DEFINITION',
description: 'Location adjacent to a fragment definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'FRAGMENT_SPREAD',
description: 'Location adjacent to a fragment spread.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INLINE_FRAGMENT',
description: 'Location adjacent to an inline fragment.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'VARIABLE_DEFINITION',
description: 'Location adjacent to a variable definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'SCHEMA',
description: 'Location adjacent to a schema definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'SCALAR',
description: 'Location adjacent to a scalar definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'OBJECT',
description: 'Location adjacent to an object type definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'FIELD_DEFINITION',
description: 'Location adjacent to a field definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'ARGUMENT_DEFINITION',
description: 'Location adjacent to an argument definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INTERFACE',
description: 'Location adjacent to an interface definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'UNION',
description: 'Location adjacent to a union definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'ENUM',
description: 'Location adjacent to an enum definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'ENUM_VALUE',
description: 'Location adjacent to an enum value definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INPUT_OBJECT',
description: 'Location adjacent to an input object type definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INPUT_FIELD_DEFINITION',
description: 'Location adjacent to an input object field definition.',
isDeprecated: false,
deprecationReason: undefined
}
],
id: 'TYPE::__DirectiveLocation'
},
typeWrappers: [
'NON_NULL',
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Directive::locations'
},
args: {
name: 'args',
description: undefined,
type: {
kind: 'OBJECT',
name: '__InputValue',
description: '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.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::description'
},
type: {
name: 'type',
description: undefined,
type: {
kind: 'OBJECT',
name: '__Type',
description: 'The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByURL`, 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.',
interfaces: [],
fields: {
kind: {
name: 'kind',
description: undefined,
type: {
kind: 'ENUM',
name: '__TypeKind',
description: 'An enum describing what kind of type a given `__Type` is.',
enumValues: [
{
name: 'SCALAR',
description: 'Indicates this type is a scalar.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'OBJECT',
description: 'Indicates this type is an object. `fields` and `interfaces` are valid fields.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INTERFACE',
description: 'Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'UNION',
description: 'Indicates this type is a union. `possibleTypes` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'ENUM',
description: 'Indicates this type is an enum. `enumValues` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INPUT_OBJECT',
description: 'Indicates this type is an input object. `inputFields` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'LIST',
description: 'Indicates this type is a list. `ofType` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'NON_NULL',
description: 'Indicates this type is a non-null. `ofType` is a valid field.',
isDeprecated: false,
deprecationReason: undefined
}
],
id: 'TYPE::__TypeKind'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::kind'
},
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::description'
},
specifiedByURL: {
name: 'specifiedByURL',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::specifiedByURL'
},
fields: {
name: 'fields',
description: undefined,
type: {
kind: 'OBJECT',
name: '__Field',
description: '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.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::description'
},
args: {
name: 'args',
description: undefined,
type: "[Circular]",
typeWrappers: [
'NON_NULL',
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Field::args::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::args'
},
type: {
name: 'type',
description: undefined,
type: "[Circular]",
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::type'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Field::deprecationReason'
}
},
id: 'TYPE::__Field'
},
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::fields::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::fields'
},
interfaces: {
name: 'interfaces',
description: undefined,
type: "[Circular]",
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::interfaces'
},
possibleTypes: {
name: 'possibleTypes',
description: undefined,
type: "[Circular]",
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::possibleTypes'
},
enumValues: {
name: 'enumValues',
description: undefined,
type: {
kind: 'OBJECT',
name: '__EnumValue',
description: 'One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.',
interfaces: [],
fields: {
name: {
name: 'name',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::name'
},
description: {
name: 'description',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::description'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__EnumValue::deprecationReason'
}
},
id: 'TYPE::__EnumValue'
},
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::enumValues::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::enumValues'
},
inputFields: {
name: 'inputFields',
description: undefined,
type: "[Circular]",
typeWrappers: [
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Type::inputFields::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::inputFields'
},
ofType: {
name: 'ofType',
description: undefined,
type: "[Circular]",
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Type::ofType'
}
},
id: 'TYPE::__Type'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::type'
},
defaultValue: {
name: 'defaultValue',
description: 'A GraphQL-formatted string representing the default value for this input value.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::defaultValue'
},
isDeprecated: {
name: 'isDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::isDeprecated'
},
deprecationReason: {
name: 'deprecationReason',
description: undefined,
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__InputValue::deprecationReason'
}
},
id: 'TYPE::__InputValue'
},
typeWrappers: [
'NON_NULL',
'LIST',
'NON_NULL'
],
args: {
includeDeprecated: {
name: 'includeDeprecated',
description: undefined,
type: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.',
id: 'TYPE::Boolean'
},
typeWrappers: [],
defaultValue: false,
id: 'ARGUMENT::__Directive::args::includeDeprecated'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::__Directive::args'
}
},
id: 'TYPE::__Directive'
},
'TYPE::__DirectiveLocation': {
kind: 'ENUM',
name: '__DirectiveLocation',
description: 'A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.',
enumValues: [
{
name: 'QUERY',
description: 'Location adjacent to a query operation.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'MUTATION',
description: 'Location adjacent to a mutation operation.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'SUBSCRIPTION',
description: 'Location adjacent to a subscription operation.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'FIELD',
description: 'Location adjacent to a field.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'FRAGMENT_DEFINITION',
description: 'Location adjacent to a fragment definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'FRAGMENT_SPREAD',
description: 'Location adjacent to a fragment spread.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INLINE_FRAGMENT',
description: 'Location adjacent to an inline fragment.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'VARIABLE_DEFINITION',
description: 'Location adjacent to a variable definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'SCHEMA',
description: 'Location adjacent to a schema definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'SCALAR',
description: 'Location adjacent to a scalar definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'OBJECT',
description: 'Location adjacent to an object type definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'FIELD_DEFINITION',
description: 'Location adjacent to a field definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'ARGUMENT_DEFINITION',
description: 'Location adjacent to an argument definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INTERFACE',
description: 'Location adjacent to an interface definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'UNION',
description: 'Location adjacent to a union definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'ENUM',
description: 'Location adjacent to an enum definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'ENUM_VALUE',
description: 'Location adjacent to an enum value definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INPUT_OBJECT',
description: 'Location adjacent to an input object type definition.',
isDeprecated: false,
deprecationReason: undefined
},
{
name: 'INPUT_FIELD_DEFINITION',
description: 'Location adjacent to an input object field definition.',
isDeprecated: false,
deprecationReason: undefined
}
],
id: 'TYPE::__DirectiveLocation'
}
},
queryType: {
kind: 'OBJECT',
name: 'Query',
description: 'This is the root of the query type!!',
interfaces: [],
fields: {
posts: {
name: 'posts',
description: 'Fetch all posts without any arguments. Default order is funky.',
type: {
kind: 'OBJECT',
name: 'Post',
description: 'A blog post or something else like carbonara recipe.',
interfaces: [],
fields: {
id: {
name: 'id',
description: 'The internal identifier we love to leak outside.',
type: {
kind: 'SCALAR',
name: 'ID',
description: 'The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID.',
id: 'TYPE::ID'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Post::id'
},
title: {
name: 'title',
description: 'The title of the post. There\'s no limit to the title, so possible the whole post content can be in the title.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Post::title'
},
author: {
name: 'author',
description: 'The author of the post. If not available, `John Doe` is return. If the other is really John Doe, you will never know.',
type: {
kind: 'OBJECT',
name: 'Author',
description: 'A blog author',
interfaces: [],
fields: {
id: {
name: 'id',
description: 'The internal identifier of the author.',
type: {
kind: 'SCALAR',
name: 'ID',
description: 'The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID.',
id: 'TYPE::ID'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Author::id'
},
firstName: {
name: 'firstName',
description: 'The first name of the author. It might not be the legal name. It\'s just a name mate....',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: true,
deprecationReason: 'this is bad',
id: 'FIELD::Author::firstName'
},
lastName: {
name: 'lastName',
description: 'The last name of the author. It might be everything as we do not run Know Your Author.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Author::lastName'
},
posts: {
name: 'posts',
description: 'the list of Posts by this author',
type: "[Circular]",
typeWrappers: [
'NON_NULL',
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Author::posts'
}
},
id: 'TYPE::Author'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Post::author'
},
votes: {
name: 'votes',
description: 'The number of votes... do not trust this field',
type: {
kind: 'SCALAR',
name: 'Int',
description: 'The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.',
id: 'TYPE::Int'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Post::votes'
}
},
id: 'TYPE::Post'
},
typeWrappers: [
'LIST'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Query::posts'
}
},
id: 'TYPE::Query'
},
mutationType: {
kind: 'OBJECT',
name: 'Mutation',
description: 'This is the root of the mutation type - where all problems start!',
interfaces: [],
fields: {
upvotePost: {
name: 'upvotePost',
description: 'Upvote a post given the identifier. Once upvoted, it can\'t be downvoted anymore.',
type: {
kind: 'OBJECT',
name: 'Post',
description: 'A blog post or something else like carbonara recipe.',
interfaces: [],
fields: {
id: {
name: 'id',
description: 'The internal identifier we love to leak outside.',
type: {
kind: 'SCALAR',
name: 'ID',
description: 'The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID.',
id: 'TYPE::ID'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Post::id'
},
title: {
name: 'title',
description: 'The title of the post. There\'s no limit to the title, so possible the whole post content can be in the title.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Post::title'
},
author: {
name: 'author',
description: 'The author of the post. If not available, `John Doe` is return. If the other is really John Doe, you will never know.',
type: {
kind: 'OBJECT',
name: 'Author',
description: 'A blog author',
interfaces: [],
fields: {
id: {
name: 'id',
description: 'The internal identifier of the author.',
type: {
kind: 'SCALAR',
name: 'ID',
description: 'The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID.',
id: 'TYPE::ID'
},
typeWrappers: [
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Author::id'
},
firstName: {
name: 'firstName',
description: 'The first name of the author. It might not be the legal name. It\'s just a name mate....',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: true,
deprecationReason: 'this is bad',
id: 'FIELD::Author::firstName'
},
lastName: {
name: 'lastName',
description: 'The last name of the author. It might be everything as we do not run Know Your Author.',
type: {
kind: 'SCALAR',
name: 'String',
description: 'The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.',
id: 'TYPE::String'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Author::lastName'
},
posts: {
name: 'posts',
description: 'the list of Posts by this author',
type: "[Circular]",
typeWrappers: [
'NON_NULL',
'LIST',
'NON_NULL'
],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Author::posts'
}
},
id: 'TYPE::Author'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Post::author'
},
votes: {
name: 'votes',
description: 'The number of votes... do not trust this field',
type: {
kind: 'SCALAR',
name: 'Int',
description: 'The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.',
id: 'TYPE::Int'
},
typeWrappers: [],
args: {},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Post::votes'
}
},
id: 'TYPE::Post'
},
typeWrappers: [],
args: {
postId: {
name: 'postId',
description: undefined,
type: {
kind: 'SCALAR',
name: 'ID',
description: 'The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID.',
id: 'TYPE::ID'
},
typeWrappers: [
'NON_NULL'
],
defaultValue: undefined,
id: 'ARGUMENT::Mutation::upvotePost::postId'
}
},
isDeprecated: false,
deprecationReason: undefined,
id: 'FIELD::Mutation::upvotePost'
}
},
id: 'TYPE::Mutation'
},
subscriptionType: undefined
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment