gatsby-source-personio
v1.2.2
Published
Gatsby JS source plugin for Personio employees API
Downloads
22
Maintainers
Readme
gatsby-source-personio
This is a source plugin for fetching employees list from the Personio API
Set The Config
In gatsby-config.js
:
module.exports = {
plugins: [
{
resolve: 'gatsby-source-personio',
options: {
credentials: {
clientId: 'YOUR_ID',
clientSecret: 'YOUR_SECRET'
}
},
},
],
}