We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Make a GraphQL API for working with Pokemon.
Please include the following:
type Query { findPokemon(id: ID!): Pokemon findPokemonID(name: String!): Pokemon } type Pokemon { number: ID! name: String! type1: String! type2: String total: Int hp: Int attack: Int defense: Int spAttack: Int spDefense: Int speed: Int } type Evolution { id: ID! from: Pokemon! to: Pokemon! level: Int condition: String type: String! } type MoveType { attack: String! defense: String! effectiveness: String! multiplier: Int } type Move { name: String! type: String category: String power: Int accuracy: Int pp: Int tm: String effect: String probability_perc: Int }