-
Notifications
You must be signed in to change notification settings - Fork 622
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stats don't account for "old" contributions #13
Comments
Hi, thanks for using the project and taking the time to open this issue! I'm afraid I don't completely understand the problem you mention. As far as I can tell, I have implemented the API query using pagination (via Lines 140 to 154 in a7478a4
Have you been finding that it is not working properly? Or has there been some other misunderstanding? I would appreciate more information so that I can better address this. Thanks! |
It's not an issue with your code rather than limitations of the Github API itself. Your query generally works fine, however, if you last contributed to a repository you don't own more than ~ 1 year ago it won't show up in the response. Sample Query for BigQuery:
In this case the following repository will show up: https://github.com/zenware/FizzBuzz which has some contributions from my side. However, on the GraphQL API this repository doesn't show up, since my last contribution was back in 2019. Github API response:
|
Thanks for the clarification! If I'm understanding correctly, there isn't much I can do about this without potentially making a lot of queries to the REST API. Even then, I am not sure that would totally address the problem, given that there are sometimes weird inaccuracies. Do you think that adding a note to the second paragraph of the disclaimer referring to this specific issue is sufficient to make users aware of the problem? If not, how would you go about fixing it? |
Yes, it's certainly a huge effort to adjust the logic for this specific issue. I might get working on it myself if I find enough time to do so - but not in the near future.
Updating the docs would definitely help future users which might be as confused as I was at the beginning about the missing contributions. In the end, this issue is more of a "FYI" than something I'd want to be "fixed" asap. |
That makes sense, thanks! I've mentioned this in the appropriate place in the README and linked back to this issue, which I will leave open. Once again, I appreciate you bringing this to my attention. |
The query used to get the users contributions apparently only includes repositories to which the user has recently contributed to.
Tested via https://docs.github.com/en/free-pro-team@latest/graphql/overview/explorer
It appears that older contributions have to be queried seperately somehow, for example by scraping the users profile, by abusing the search api or via third party tools such as BigQuery: https://stackoverflow.com/a/63427144
The text was updated successfully, but these errors were encountered: