Within the scope of the research project ideally I need for any two users find the repositories that they have in their shared history of public development, i.e. they have committed in the same repos.
I wonder if it is possible to get the list of repositories that were ever been touched by a given user.
In Github-API I can see only:
GET /repos/:owner/:repo/contributors
GET /users/:user/repos
GET /users/:user/events
First gives only the contributors for a given :repo
repository
Second only gives a :user
's repos
Third was promising, but events are limited to 300
Is there any way to get all the repositories a user has ever worked with on Github without dumping all 3 millions repos?