diegolamanno / gatsby-source-greenhouse

Gatsby source plugin for loading job openings from greenhouse.io ⚛️

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

allGreenhouseJobPost only includes one post of each job

nonphoto opened this issue · comments

I'm trying to query all job posts across multiple boards. Specifically I have one job that has multiple posts with the same name, but allGreenhouseJobPost only includes one post of each job.

For example here's my query:

  allGreenhouseJobPost {
    edges {
      node {
        job_id
        external
        title
      }
    }
  }
}

This returns only one job, but it should return two jobs with the same job_id: one internal and one external.

PR #13 is my fix for this. You can use my fork and run locally if it doesn't get merged, we are currently using it on our site and it is working fine.

Thanks @joe-alfaro-anchorage PR #13 has been merge and released with v3.0.0. Thanks