OBJECT

Query

Query any Pokémon by number or name

link GraphQL Schema definition

1type Query {
2
3query: Query
4
5pokemons(first: Int!): [Pokemon]
6
7pokemon(id: String, name: String): Pokemon
8
9}