Skip to content

Commit 4f5b4d6

Browse files
author
James Brundage
committed
feat: GitMyIssueTotals.gql ( Fixes #29 )
1 parent a444136 commit 4f5b4d6

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Examples/GitMyIssueTotals.gql

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
query {
2+
viewer {
3+
issues {
4+
totalCount
5+
}
6+
open: issues(states:OPEN) {
7+
totalCount
8+
}
9+
closed: issues(states:CLOSED) {
10+
totalCount
11+
}
12+
}
13+
}

0 commit comments

Comments
 (0)