Loads job openings from Hire With Google into Gatsby.js.
# npm
npm install gatsby-source-hire-with-google
# yarn
yarn add gatsby-source-hire-with-google
First, find the company name used in your public jobs url: hire.withgoogle.com/public/jobs/{companyName}
.
Next, add companyName
in your gatsby-config.js
:
{
...
plugins: [
...
{
resolve: 'gatsby-source-hire-with-google',
options: {
companyName: '{COMPANY_NAME}',
},
},
]
}
Hire With Google uses the JobPosting schema from schema.org.
You can read more about their API here.
{
allHireWithGoogleJob {
edges {
node {
... https://schema.org/JobPosting for schema
}
}
}
}