Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

Description

This is a Gatsby source plugin. It allows you to pull job offers published with recruitee into your gatsby project.

How to install

Run the following command in your gatsby project root directory:

npm install gatsby-source-recruitee

Examples of usage

Add the plugin to your gatsby-config.js file by adding the following code to the plugins fild:

{
  resolve: `gatsby-source-recruitee`,
  options: {
    companyName: "COMPANY-NAME",
  }
}

Replaye the “COMPANY-NAME” with your company name given by recruitee. You can find it at the top of your dashboard overview in recruitee.

How to query for data

Example query:

allRecruiteeOffer {
  edges {
    node {
      title
      description
      requirements
      department
      city
      careers_url
      careers_apply_url
    }
  }
}
© 2023 Gatsby, Inc.