meugenom/github-leetcode-stats

Add GRAPHQL request for total stars and see it in the visualization

meugenom opened this issue · 0 comments

The request may be as following less:

{
  user(login: "meugenom") {
    repositories(first: 100, ownerAffiliations: OWNER, isFork: false) {
      totalCount
      edges {
        cursor
        node {
          name
          stargazers {
            totalCount
          }
          watchers {
            totalCount
          }
        }
      }
    }
  }
}```