Skip to content

Commit 9335b29

Browse files
authored
Create repository_overview.graphql
Simple query to show description, wiki status, count of open pull requests, open issues, star-gazers and forks for a repository.
1 parent 9ab6adc commit 9335b29

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)