rehansaeed.github.io
rehansaeed.github.io copied to clipboard
Show GitHub Stars & Forks in Portfolio
https://github.com/lindsaykwardell/gridsome-source-github-api
- Get personal access token: https://github.com/settings/tokens
- Use plugin: https://github.com/lindsaykwardell/gridsome-source-github-api
- Use query:
query {
user(login: "RehanSaeed") {
repositories(first: 100, isFork: false, orderBy: { field: STARGAZERS, direction: DESC }) {
nodes {
name
watchers {
totalCount
}
stargazers {
totalCount
}
forkCount
}
}
}
}