Loading
GraphQL Playground
{"version":"1.7.42","settings":{"editor.theme":"dark","editor.fontFamily":"\"Fira Code\", \"MesloLGS NF\", \"Menlo\", Consolas, Courier New, monospace","editor.reuseHeaders":true},"tabs":[{"name":"Get Pokémon Details simple","endpoint":"https://graphqlpokemon.favware.tech/","query":"{\n\tgetPokemon(pokemon: dragonite reverseFlavorTexts: true takeFlavorTexts: 1) {\n\t\tnum\n\t\tspecies\n\t\ttypes\n\t\tabilities { first second hidden }\n\t\tbaseStats { hp attack defense specialattack specialdefense speed }\n\t\tgender { male female }\n\t\theight\n\t\tweight\n\t\tflavorTexts { game flavor }\n\t\tevYields { hp attack defense specialattack specialdefense speed }\n\t\tisEggObtainable\n\t\tminimumHatchTime\n\t\tmaximumHatchTime\n\t\tlevellingRate\n\t\tsprite\n\t\tshinySprite\n\t\tbackSprite\n\t\tshinyBackSprite\n\t\tsmogonTier\n\t\tsmogonPage\n\t\tserebiiPage\n\t\tbulbapediaPage\n\t}\n}"},{"name":"Pokémon Details with variables","endpoint":"https://graphqlpokemon.favware.tech/","variables":"{\n \"pokemon\": \"mewtwo\"\n}","query":"query($pokemon: PokemonEnum!) {\n\tgetPokemon(pokemon: $pokemon reverseFlavorTexts: true takeFlavorTexts: 1) {\n\t\tnum\n\t\tspecies\n\t\ttypes\n\t\tabilities { first second hidden }\n\t\tbaseStats { hp attack defense specialattack specialdefense speed }\n\t\tgender { male female }\n\t\theight\n\t\tweight\n\t\tflavorTexts { game flavor }\n\t\tevYields { hp attack defense specialattack specialdefense speed }\n\t\tisEggObtainable\n\t\tminimumHatchTime\n\t\tmaximumHatchTime\n\t\tlevellingRate\n\t\tsprite\n\t\tshinySprite\n\t\tbackSprite\n\t\tshinyBackSprite\n\t\tsmogonTier\n\t\tsmogonPage\n\t\tserebiiPage\n\t\tbulbapediaPage\n\t}\n}"},{"name":"Pokémon Details with fragments and variables","endpoint":"https://graphqlpokemon.favware.tech/","variables":"{\n \"pokemon\": \"arceus\",\n \"reverse\": true,\n \"take\": 1\n}","query":"fragment data on Pokemon {\n\t\tnum\n\t\tspecies\n\t\ttypes\n\t\tabilities { first second hidden }\n\t\tbaseStats { hp attack defense specialattack specialdefense speed }\n\t\tgender { male female }\n\t\theight\n\t\tweight\n\t\tflavorTexts { game flavor }\n\t\tevYields { hp attack defense specialattack specialdefense speed }\n\t\tisEggObtainable\n\t\tminimumHatchTime\n\t\tmaximumHatchTime\n\t\tlevellingRate\n\t\tsprite\n\t\tshinySprite\n\t\tbackSprite\n\t\tshinyBackSprite\n\t\tsmogonTier\n\t\tsmogonPage\n\t\tserebiiPage\n\t\tbulbapediaPage\n}\n\nquery($pokemon: PokemonEnum! $reverse: Boolean! $take: Int!) {\n\tgetPokemon(pokemon: $pokemon reverseFlavorTexts: $reverse takeFlavorTexts: $take) {\n\t\t...data\n\t}\n}"}],"canSaveConfig":false}