Skip to content

Commit b3c471b

Browse files
authored
Merge pull request #105 from MikeRalphson/patch-2
Create repository_overview.graphql
2 parents 9ab6adc + 9335b29 commit b3c471b

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
query {
2+
repositoryOwner(login: "git") {
3+
repository(name: "git") {
4+
description hasWikiEnabled
5+
issues(states: OPEN) {
6+
totalCount
7+
}
8+
pullRequests(states: OPEN) {
9+
totalCount
10+
}
11+
stargazers {
12+
totalCount
13+
}
14+
forks {
15+
totalCount
16+
}
17+
}
18+
}
19+
}

0 commit comments

Comments
 (0)