2.0.5 • Published 7 years ago

gatsby-source-smartrecruiters v2.0.5

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

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
        }
      }
    }
  }
}
2.0.5

7 years ago

2.0.4

7 years ago

2.0.3

7 years ago

2.0.2

7 years ago

2.0.1

7 years ago

2.0.0

7 years ago