gatsby-source-pokemons
v1.1.5
Published
A gatsby source plugin for building Pokemon Projects using GraphQL in Gatsby.
Downloads
30
Maintainers
Readme
Source plugin for pulling pokemon data into Gatsby.
How to install
Within the root of your Gatsby Project:
npm install gatsby-source-pokemons
add
gatsby-source-pokemons
to your plugin array ingatsby-config.js
Navigate to
localhost:8000/__graphql
to viewallPokemons
query type.
Examples of usage
see example repo
allPokemons {
nodes {
name
id
total
hp
sp_def
sp_atk
defense
attack
type
speed
national_number
natl_num(as int)
sprites {
normal
large (not available on pokemon after national_number 721)
}
}
}
}