summaryrefslogtreecommitdiff
path: root/source/features/profile-gists-link.gql
blob: a584fa14f63d0416c628347a6abf8df79bdfbe70 (plain) (blame)
1
2
3
4
5
6
7
query getGistCount($username: String!) {
	user(login: $username) {
		gists(first: 0) {
			totalCount
		}
	}
}