And also I cannot some find my own repos.
Bug Report Dump (Auto-generated)
Version 1.22.0 (1534395229) Device: iPhone 5s (iOS 11.4.1) TestFlight: false
@mvrozanti try searching mvrozanti/ (with the slash)
Sent with GitHawk
Without the st. Just mvrozanti/. I searched and got a lot of results . If your searching for a specific repo youâll have to write it out completely.
Sent with GitHawk
I also tried searching for mvrozanti/ and while it did return many results, st, for instance did not show up.
It is a fork though. Does it not count as a repository belonging to the user who forked it?
@mvrozanti ya that should show up like anything else. Is it a private repo?
Sent with GitHawk
It is not.
Neither is âdottyâ for you @mvrozanti and I canât see Huddie/GitHawk which I forked.
@rnystrom forks seem to be missing
Sent with GitHawk
Could be something with the search API or query that doesn't show fork results? That would be really strange...
Actually, some "self-owned" (not fork) repos are missing as well. Example: rastreamento-correios
Maybe it's my iOS version? Pardon my ignorance it's an old phone.
Iâm on iOS 12 and missing. Also doesnât seem like that would be it
Sent with GitHawk
Looks like GitHub search will ignore fork repos by default. If we want to see the forked repos we have to specify that in search query like fork:true or we can even search only for forked repos by fork:only.
Checkout more on Searching for Repositories
I also fired up GraphQl Explorer to check and was able to get forked repos as like mentioned in docs.
query {
search(query: "fork:true rizwankce/", type: REPOSITORY, first: 100) {
repositoryCount
edges {
node {
... on Repository {
name
}
}
}
}
}
That still wouldnât explain non-forks not appearing as well though
Sent with GitHawk
@mvrozanti I was able to get that as well in search. 
We can compare the search with github search and cross verify it.
Sent with GitHawk
I was able to get my forked repo just by entering Rizwankce/ fork:true so there is no difference between Github search and Githawk. But it's tricky to remember all search keywords.
Sent with GitHawk
@rizwankce ok rastreamento-correios is actually there, my bad; I thought I didnât see it
Adding fork:true worked
Sent with GitHawk
But this should be either added by default or we need a filter option. Users shouldnât have to know to add /fork:true.
Sent with GitHawk
Maybe only disable or unfilter if they want? Should this be a setting?
Sent with GitHawk
đ¤ˇââď¸I feel peopleâs expectations are that forks appear
Sent with GitHawk
Letâs default to include forks
Sent with GitHawk
Most helpful comment
I was able to get my forked repo just by entering
Rizwankce/ fork:trueso there is no difference between Github search and Githawk. But it's tricky to remember all search keywords.Sent with GitHawk