Community Plugin
View plugin on GitHub
Gatsby Source Pokemons Plugin
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-pokemonsto your plugin array ingatsby-config.js
- 
Navigate to localhost:8000/__graphqlto viewallPokemonsquery 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)
      }
    }
  }
}