Skip to content

Sudden change in total stars earned #2186

Answered by rickstaa
andreped asked this question in Q&A
Discussion options

You must be logged in to vote

@andreped to my knowledge, we did not make breaking changes to the star fetching behaviour. 🤔 The only commit that could have influenced this would be af97e57. I checked your username in the GraphQL API, and the correct number of stars should be 136. You can check this out using the following syntax:

query userInfo($login: String!) {
  user(login: $login) {
    repositories(
      first: 100
      ownerAffiliations: OWNER
      orderBy: {direction: DESC, field: STARGAZERS}
    ) {
      nodes {
        name
        stargazers {
          totalCount
        }
      }
    }
  }
}
{
  "login": "andreped"
}

I am, therefore, surprised that you used to have 300 stars. Did you maybe transfer a r…

Replies: 1 comment 8 replies

Comment options

You must be logged in to vote
8 replies
@andreped
Comment options

@rickstaa
Comment options

@andreped
Comment options

@rickstaa
Comment options

@andreped
Comment options

Answer selected by rickstaa
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants