summaryrefslogtreecommitdiff
path: root/queries/srht/srht_list_repos.graphql
blob: ffbbd4518cfc786cb5aefd021f3e7b0ee9a064d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
query GetUserRepos($username: String!, $cursor: Cursor) {
    user(username: $username) {
        canonicalName
        repositories(filter: { count: 10 }, cursor: $cursor) {
            cursor
            results {
                name
            }
        }
    }
}