OBJECT

__Schema

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.

link GraphQL Schema definition

1type __Schema {
2
3description: String
4
5# A list of all types supported by this server.
6types: [__Type!]!
7
8# The type that query operations will be rooted at.
9queryType: __Type!
10
11# If this server supports mutation, the type that mutation operations will be
12# rooted at.
13mutationType: __Type
14
15# If this server support subscription, the type that subscription operations will
16# be rooted at.
17subscriptionType: __Type
18
19# A list of all directives supported by this server.
20directives: [__Directive!]!
21
22}

link Required by

This element is not required by anyone