You need to download your linkedin information here https://www.linkedin.com/psettings/member-data
rename the zip file linkedin.zip and put it in the root of your project.
npm i gatsby-plugin-linkedin-resume
yarn add gatsby-plugin-linkedin-resume
gatsby-config.js
module.exports = {
siteMetadata: {
...
},
plugins: [
'gatsby-plugin-linkedin-resume',
...
],
};
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
}
}
}