I'm trying to get repositories of user with login name "somelogin".
It returns all repositories but I'm trying to get repositories owned by him only. Because new API uses GraphQL I couldn't did it.
Currently I'm using:
{
"query": "query { user(login:\"furknyavuz\") {repositories(first: 50) { nodes { name url }}}}"
}