Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

gatsby-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
        }
      }
    }
  }
}
© 2023 Gatsby, Inc.