Consider using Rest API instead of GraphQL to fan out requests (like https://star-history.com and https://seladb.github.io/) - curl 'https://api.github.com/repos/techniq/svelte-ux/stargazers?per_page=100&page=1' -H 'accept: application/vnd.github.v3.star+json'
Also consider only grabbing a few data points (like https://star-history.com). Especially for very big repos
Paginate followers
Using the Rest API and/or only grabbing a few data points would require this anyways, but would also be nice for performance
curl 'https://api.github.com/repos/techniq/svelte-ux/stargazers?per_page=100&page=1' -H 'accept: application/vnd.github.v3.star+json'
https://github.com/techniq/github-analysis/blob/main/src/routes/stars/%2Bpage.ts#L22-L24