Gatsby source plugin for building websites using Homerun.co as a data source.
Note that it only supports the job API resource.
Get your API key by contacting Homerun.co support (API still in beta).
Based on gatsby-source-lever
yarn add gatsby-source-homerun
// In your gatsby-config.js
plugins: [
{
resolve: "gatsby-source-homerun",
options: {
apiKey: "...",
},
},
];
allHomerunJob {
edges {
node {
id
homerunId
title
createdAt
activeTime {
openedAt
...
}
applicationFormUrl
jobUrl
status
tmpLocation
tmpDepartment
totalCandidateCount
type
seoContent {
...
}
}
}
}