1.0.4 • Published 6 years ago

gatsby-source-homerun v1.0.4

Weekly downloads
6
License
MIT
Repository
github
Last release
6 years ago

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

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago