Community Plugin
View plugin on GitHubgatsby-source-pokedex
First gen pokedex source plugin
Install
npm i --save gatsby-source-pokedex
How to use
// gatsby-config.js
module.exports = {
plugins: [
`gatsby-source-pokedex`
]
}
query {
allPokemon {
nodes {
number
name
type
base {
HP
Attack
Defense
Sp__Attack
Sp__Defense
Speed
}
image {
childImageSharp {
fixed(width: 125, height: 125, quality: 100) {
...GatsbyImageSharpFixed_withWebp
}
}
}
}
}
}