summaryrefslogtreecommitdiff
path: root/queries/github/gh_list_repos.graphql
blob: d7d36b3a48641b8c286bf9931d1b778c7384afc1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
query GetUserRepos($username: String!, $after: String) {
    repositoryOwner(login: $username) {
        repositories(first: 100, after: $after, ownerAffiliations: OWNER) {
            nodes {
                name
                url
                isFork
                isPrivate
            }
            pageInfo {
                hasNextPage
                endCursor
            }
        }
    }
}