-
Just observed that the total number of stars just changed. As this is not really an issue, as this change was probably done intentional in a recent commit, for whatever reason, I would like to know if there is a way to get the old behaviour. Just went from above 300 stars to around 136 (see https://github.com/andreped). Any suggestions? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
@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 repository with stars to an organization? We are currently not counting stars from repositories that are in organizations (see #1808). I also checked the commit before this change, resulting in 136 stars. You can check this out yourself by:
Please let me know if you find a commit where the stars are returned as 300. |
Beta Was this translation helpful? Give feedback.
@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:
I am, therefore, surprised that you used to have 300 stars. Did you maybe transfer a r…