gatsby-source-homerun
v1.0.4
Published
Gatsby source plugin for building websites using Homerun.co as a data source
Downloads
6
Maintainers
Readme
gatsby-source-homerun
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
Install
yarn add gatsby-source-homerun
How to use
// In your gatsby-config.js
plugins: [
{
resolve: "gatsby-source-homerun",
options: {
apiKey: "...",
},
},
];
GraphQL Query to get all jobs
allHomerunJob {
edges {
node {
id
homerunId
title
createdAt
activeTime {
openedAt
...
}
applicationFormUrl
jobUrl
status
tmpLocation
tmpDepartment
totalCandidateCount
type
seoContent {
...
}
}
}
}
Wishlist
- [ ] Use gatsby-node-helpers