https://graphql-pokeapi.vercel.app
- GraphCDN (with caching): https://graphql-pokeapi.graphcdn.app
- Origin: https://graphql-pokeapi.vercel.app/api/graphql
https://graphql-pokeapi.vercel.app/api/graphql
If you are using graphql-pokeapi
, you can add your apps in our awesome-list.md
- WIP - Sending request using Fetch API - GET
- Sending request using Fetch API - POST
- WIP - Sending request using Apollo - GET
- Sending request using Apollo - POST
Query | Desc | Variables |
---|---|---|
abilities |
Get list of abilities | |
ability |
Get detail of ability | ability |
berries |
Get list of berries | |
berry |
Get detail of berry | berry |
eggGroups |
Get list of egg groups | |
eggGroup |
Get detail of egg group | eggGroup |
encounterMethods |
Get list of encounterMethods | |
encounterMethod |
Get detail of encounterMethod | encounterMethod |
evolutionChains |
Get list of evolutionChains | |
evolutionChain |
Get detail of evolutionChains | id |
evolutionTriggers |
Get list of evolutionTriggers | |
evolutionTrigger |
Get detail of evolutionTrigger | name |
genders |
Get list of genders | |
gender |
Get detail of gender | gender |
growthRates |
Get list of growth rates | |
growthRate |
Get detail of growth rate | growthRate |
locations |
Get list of locations | |
location |
Get detail of location | location |
moves |
Get list of moves | |
move |
Get detail of move | move |
natures |
Get list of natures | |
nature |
Get detail of nature | nature |
pokemons |
Get list of pokemons | limit , offset |
pokemon |
Get detail info of pokemon | name |
regions |
Get list of regions | |
region |
Get detail of region | region |
species |
Get list of species | |
types |
Get list of types |
Desc: Get list of pokemons
Sample Query
query pokemons($limit: Int, $offset: Int) {
pokemons(limit: $limit, offset: $offset) {
count
next
previous
status
message
results {
url
name
image
}
}
}
Sample Variables
{
"limit": 2,
"offset": 1
}
Sample Result
{
"data": {
"pokemons": {
"count": 964,
"next": "https://pokeapi.co/api/v2/pokemon/?offset=3&limit=3",
"previous": null,
"results": [
{
"url": "https://pokeapi.co/api/v2/pokemon/1/",
"name": "bulbasaur",
"image": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/1.png"
},
{
"url": "https://pokeapi.co/api/v2/pokemon/2/",
"name": "ivysaur",
"image": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/2.png"
},
{
"url": "https://pokeapi.co/api/v2/pokemon/3/",
"name": "venusaur",
"image": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/3.png"
}
],
"status": true,
"message": ""
}
}
}
Desc: Get detail info of pokemon
Sample Query
query pokemon($name: String!) {
pokemon(name: $name) {
id
name
abilities {
ability {
name
}
}
moves {
move {
name
}
}
types {
type {
name
}
}
message
status
}
}
Sample Variables
{
"name": "ditto"
}
Sample Result
{
"data": {
"pokemon": {
"id": 132,
"name": "ditto",
"abilities": [
{
"ability": {
"name": "imposter"
}
},
{
"ability": {
"name": "limber"
}
}
],
"moves": [
{
"move": {
"name": "transform"
}
}
],
"types": [
{
"type": {
"name": "normal"
}
}
],
"message": "",
"status": true
}
}
}
Thanks goes to these wonderful people!
Copyright Β© By Irfan Maulana