This is a source plugin for fetching employees list from the Personio API
In gatsby-config.js
:
module.exports = {
plugins: [
{
resolve: 'gatsby-source-personio',
options: {
credentials: {
clientId: 'YOUR_ID',
clientSecret: 'YOUR_SECRET'
}
},
},
],
}