1.3.0 • Published 5 years ago

gatsby-source-hire-with-google v1.3.0

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

gatsby-source-hire-with-google

Loads job openings from Hire With Google into Gatsby.js.


Installation

# npm
npm install gatsby-source-hire-with-google

# yarn
yarn add gatsby-source-hire-with-google

How to Use

First, find the company name used in your public jobs url: hire.withgoogle.com/public/jobs/{companyName}.

Next, add companyName in your gatsby-config.js:

{
    ...
    plugins: [
    ...
    {
      resolve: 'gatsby-source-hire-with-google',
      options: {
        companyName: '{COMPANY_NAME}',
      },
    },
  ]
}

How to Query

Hire With Google uses the JobPosting schema from schema.org.

You can read more about their API here.

{
    allHireWithGoogleJob {
      edges {
        node {
          ... https://schema.org/JobPosting for schema
        }
      }
    }
}
1.3.0

5 years ago

1.2.0

6 years ago

1.1.0

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago