1.0.2 • Published 4 years ago

gatsby-plugin-linkedin-resume v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

gatsby-plugin-linkedin-resume

Requirement

You need to download your linkedin information here https://www.linkedin.com/psettings/member-data

screenshot

rename the zip file linkedin.zip and put it in the root of your project.

Installation

npm i gatsby-plugin-linkedin-resume

yarn add gatsby-plugin-linkedin-resume

gatsby-config.js

module.exports = {
  siteMetadata: {
    ...
  },
  plugins: [
    'gatsby-plugin-linkedin-resume',
    ...
  ],
};

Usage

You can now query your linkedin data in graphql queries

query MyQuery {
  linkedInResume {
    headline
    education {
      schoolName
      startDate
    }
    languages {
      name
    }
    experiences {
      companyName
      title
      description
      location
      startedOn
      finishedOn
    }
  }
}