Pokemon
    Represents a Pokémon
GraphQL Schema definition
- type Pokemon {
- #   The ID of an object
- : ID! 
- #   The identifier of this Pokémon
- : String 
- #   The name of this Pokémon
- : String 
- #   The minimum and maximum weight of this Pokémon
- : PokemonDimension 
- #   The minimum and maximum weight of this Pokémon
- : PokemonDimension 
- #   The classification of this Pokémon
- : String 
- #   The type(s) of this Pokémon
- : [String] 
- #   The type(s) of Pokémons that this Pokémon is resistant to
- : [String] 
- #   The attacks of this Pokémon
- : PokemonAttack 
- #   The type(s) of Pokémons that this Pokémon weak to
- : [String] 
- : Float 
- #   The maximum CP of this Pokémon
- : Int 
- #   The evolutions of this Pokémon
- : [Pokemon] 
- #   The evolution requirements of this Pokémon
- : PokemonEvolutionRequirement 
- #   The maximum HP of this Pokémon
- : Int 
- : String 
- }
- type Pokemon {
- # The ID of an object
- : ID!
- # The identifier of this Pokémon
- : String
- # The name of this Pokémon
- : String
- # The minimum and maximum weight of this Pokémon
- : PokemonDimension
- # The minimum and maximum weight of this Pokémon
- : PokemonDimension
- # The classification of this Pokémon
- : String
- # The type(s) of this Pokémon
- : [String]
- # The type(s) of Pokémons that this Pokémon is resistant to
- : [String]
- # The attacks of this Pokémon
- : PokemonAttack
- # The type(s) of Pokémons that this Pokémon weak to
- : [String]
- : Float
- # The maximum CP of this Pokémon
- : Int
- # The evolutions of this Pokémon
- : [Pokemon]
- # The evolution requirements of this Pokémon
- : PokemonEvolutionRequirement
- # The maximum HP of this Pokémon
- : Int
- : String
- }