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
1 type __Schema { 2 3 : String 4 5 # A list of all types supported by this server. 6 : [__Type!]! 7 8 # The type that query operations will be rooted at. 9 : __Type! 10 11 # If this server supports mutation, the type that mutation operations will be 12 # rooted at. 13 : __Type 14 15 # If this server support subscription, the type that subscription operations will 16 # be rooted at. 17 : __Type 18 19 # A list of all directives supported by this server. 20 : [__Directive!]! 21 22 }
link Required by
This element is not required by anyone