You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What’s missing?
I don't see a Search option in octokit.repos.listForAuthenticatedUser(), and i think this is same for the underlying REST API by Github, Can someone recommend me any good alternative to search all repositories from my organization and personal profile?
I was thinking to load all repos, index them in local DB and then run a search on that, but this kind of feature is already available in bitbucket and gitlab, we don't need to index repos for them.
In bitbucket and Giltab we've q and query within listing Repositories. Can we've something like that?
Why?
Let's suppose I've 3,000 Repos and I want to search for any specific one, how I'll do that? (affiliation could be owner,collaborator,organization_member)
Alternatives you tried
I've the last option to index them in DB and then search on top of it, but there will be another issue, an organization can delete some repo, and create new repos, and adding/removeing these many repos in DB every time will not be a good approach.
The text was updated successfully, but these errors were encountered:
What’s missing?
I don't see a Search option in
octokit.repos.listForAuthenticatedUser()
, and i think this is same for the underlying REST API by Github, Can someone recommend me any good alternative to search all repositories from my organization and personal profile?I was thinking to load all repos, index them in local DB and then run a search on that, but this kind of feature is already available in bitbucket and gitlab, we don't need to index repos for them.
I'm using below code for listing all repos
In bitbucket and Giltab we've
q
andquery
within listing Repositories. Can we've something like that?Why?
Let's suppose I've 3,000 Repos and I want to search for any specific one, how I'll do that? (affiliation could be
owner,collaborator,organization_member
)Alternatives you tried
I've the last option to index them in DB and then search on top of it, but there will be another issue, an organization can delete some repo, and create new repos, and adding/removeing these many repos in DB every time will not be a good approach.
The text was updated successfully, but these errors were encountered: