Community Plugin
View plugin on GitHubgatsby-source-smartrecruiters
Loads job openings from smartrecruiters.com into Gatsby.js. Based on gatsby-source-greenhouse.
Installation
npm install gatsby-source-smartrecruiters
or
yarn add gatsby-source-smartrecruiters
Usage
Edit gatsby-config.js
to use the plugin:
{
...
plugins: [
...
{
resolve: `gatsby-source-smartrecruiters`,
options: {
companyIdentifier: `{COMPANY_IDENTIFIER}`,
},
},
]
}
Querying
You can query the all JobPost
created by the plugin as follows:
{
allSmartRecruitersJobPost {
edges {
node {
...
}
}
}
}
You can also query all JobPost
broken out for each department:
{
allSmartRecruitersDepartment {
edges {
node {
name
childrenSmartRecruitersJobPost {
title
}
}
}
}
}