Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/zsobral/gatsby-source-pokedex


https://github.com/zsobral/gatsby-source-pokedex

gatsby gatsby-plugin gatsby-source pokemon

Last synced: 10 days ago
JSON representation

Awesome Lists containing this project

README

        

# gatsby-source-pokedex

First gen pokedex source plugin

## Install

`npm i --save gatsby-source-pokedex`

## How to use

```js
// gatsby-config.js

module.exports = {
plugins: [
`gatsby-source-pokedex`
]
}
```

```graphql
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
}
}
}
}
}
}
```