Evan Li
Evan Li
`Github GraphQL` query to get top 100 repos is not working. Now I have changed `100` to `60` in order to get the results on `2022-01-13`. And the data has...
The data has been updated on `2022-01-13`. For more details refer to #14
Now I use these three API to get most stars or forks repository: Most stars: ``` https://api.github.com/search/repositories?q=stars:>0&sort=stars&per_page=100 ``` Most forks: ``` https://api.github.com/search/repositories?q=forks:>0&sort=forks&per_page=100 ``` Most language stars (e.g., Python): ``` https://api.github.com/search/repositories?q=language:Python&stars:>0&sort=stars&per_page=100...
Since 2021-08-20 commit I have changed the query method from `Github REST API v3` to `Github GraphQL API v4`. It seems like this issue doesn't reappear.
Thanks a lot, I will test it and if it works I will merge the requests.
> The repo seems to haven't been updated for a while. will it be a requirments.txt available? The repo is now updated daily. And requirements.txt has been available now.
Changes have been merged. Thanks for your contributions!
As above mentioned, at this time first 100 GraphQL didn't return the results, so I had to change it to first 60. I have fixed it to 100 since 2023-02-12....
I find that when I query the GraphQL API, sometimes it just returns the wrong results. Here is an example, you can try it yourself on [GraphQL API Explorer](https://docs.github.com/en/graphql/overview/explorer) ```...