Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

gatsby-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
          }
        }
      }
    }
  }
}
© 2023 Gatsby, Inc.