Graphql schema documentation

Get information of a Pokémon with GraphQL!

link GraphQL Schema definition

1schema {
2
3# The schema’s entry-point for queries. This acts as the public, top-level API
4# from which all queries must start.
5query: QueryRoot
6
7# The schema’s entry-point for mutations. This acts as the public, top-level API
8# from which all mutation queries must start.
9mutation: Mutation
10}