1.3.1 • Published 6 years ago

gatsby-teamtailor-users v1.3.1

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

gatsby-teamtailor-users

A gatsby plugin for getting teamtailor users.

Usage

Add to gatsby-config.js:

    {
        resolve: 'gatsby-teamtailor-users',
        options: {
            token: YOUR_TEAMTAILOR_TOKEN
        }
    }

GraphQL query

  allTeamtailorUser {
    edges {
      node {
        name
        title
        picture {
          standard
          large
        }
      }
    }
  }

Missing fields

We've only implemented the fields we needed, but feel free to PR if you need some other field than those this plugin offers.

Large picture type

We needed an image type that was significantly bigger than what Teamtailors standard was, so we took advantage och their cloudinary usage and mapped the url to serve a larger one, this is probably not that great as it would break if Teamtailor moves away from cloudinary, but 🤷‍♂️

1.3.1

6 years ago

1.3.0

6 years ago

1.2.0

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago