summaryrefslogtreecommitdiff
path: root/source/features/repo-header-info.gql
blob: 4acd760cdddeb4604a20d090c5caa0d0d8d2326c (plain) (blame)
1
2
3
4
5
6
7
query GetRepositoryInfo($owner: String!, $name: String!) {
	repository(owner: $owner, name: $name) {
		stargazerCount
		isFork
		isPrivate
	}
}