Source plugin for https://www.potterapi.com/. You can find an example in the example directory.
npm install --save gatsby-source-potterapi
Go to potterapi.com and create an account. Afterwards you can see your API key on your profile.
Save the API key in an environment file like:
POTTER_KEY=your-api-key-here
Add the plugin and define the API key.
module.exports = {
plugins: [
{
resolve: 'gatsby-source-potterapi',
options: {
key: process.env.POTTER_KEY,
},
},
],
}