Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

gatsby-source-gitconnected

Source plugin for pulling data into Gatsby from gitconnected.com

How to use

// In your gatsby-config.js
module.exports = {
  plugins: [
    {
      resolve: `gatsby-source-gitconnected`,
      options: { username: `your_gitconnected_username`}
    }
  ]
}

Plugin options

  • username: the gitconnected username witch you want to request the API

How to query your gitconnected data using GraphQL

query {
  portfolio {
    basics {
      email
      name
      picture
      summary
    }
    certificates {
      date(formatString: "YYYY-MM-DD")
      issuer
      name
    }
    languages {
      fluency
      language
    }
    skills {
      level
      name
      rating
      yearsOfExperience
    }
  }
}
© 2023 Gatsby, Inc.