rehansaeed.github.io icon indicating copy to clipboard operation
rehansaeed.github.io copied to clipboard

Show GitHub Stars & Forks in Portfolio

Open RehanSaeed opened this issue 5 years ago • 1 comments

https://github.com/lindsaykwardell/gridsome-source-github-api

RehanSaeed avatar Apr 05 '20 12:04 RehanSaeed

  1. Get personal access token: https://github.com/settings/tokens
  2. Use plugin: https://github.com/lindsaykwardell/gridsome-source-github-api
  3. Use query:
query {
  user(login: "RehanSaeed") {
    repositories(first: 100, isFork: false, orderBy: { field: STARGAZERS, direction: DESC }) {
      nodes {
        name
        watchers {
          totalCount
        }
        stargazers {
          totalCount
        }
        forkCount
      }
    }
  }
}

RehanSaeed avatar May 19 '20 09:05 RehanSaeed