Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

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

© 2023 Gatsby, Inc.