1.0.3 • Published 5 years ago

gatsby-source-pokedex v1.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

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
          }
        }
      }
    }
  }
}
1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago