Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

gatsby-source-personio-xml

Source plugin for pulling data into Gatsby from a Personio XML feed.

Install

npm install --save gatsby-source-personio-xml

or

yarn add gatsby-source-personio-xml

How to use

In gatsby-config.js:

module.exports = {
  plugins: [
    {
      resolve: `gatsby-source-personio-xml`,
      options: {
        url: `https://{username}.jobs.personio.de/xml`,
      },
    },
  ],
};

How to query

You may access the following data node types:

Node Description
PersonioPosition The job postings
PersonioDepartment The departments from department field in the XML
PersonioOffice The offices from office field in the XML

The field names follow the scheme in the Personio XML feed.

To retrieve a list of all departments with their job postings the following GraphQL query should work:

allPersonioDepartment {
  edges {
    node {
      id
      name
      positions {
        id
        positionId
        recruitingCategory
        office {
          id
          name
        }
        employmentType
        schedule
        seniority
        subcompany
        yearsOfExperience
        name
        jobDescriptions {
          name
          value
        }
      }
    }
  }
}
© 2023 Gatsby, Inc.