gatsby-source-personio
Version:
Gatsby JS source plugin for Personio employees API
24 lines (19 loc) • 441 B
Markdown
# gatsby-source-personio
This is a source plugin for fetching employees list from the Personio API
## Set The Config
In `gatsby-config.js`:
```js
module.exports = {
plugins: [
{
resolve: 'gatsby-source-personio',
options: {
credentials: {
clientId: 'YOUR_ID',
clientSecret: 'YOUR_SECRET'
}
},
},
],
}
```