Skip to content

Commit fc0d286

Browse files
author
James Brundage
committed
feat: GitSponsors.gql ( Fixes #24 )
1 parent 503707c commit fc0d286

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

Examples/GitSponsors.gql

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
query {
2+
viewer {
3+
... on Sponsorable {
4+
sponsors(first: 100) {
5+
totalCount
6+
nodes {
7+
... on User {
8+
login
9+
}
10+
... on Organization {
11+
login
12+
}
13+
}
14+
}
15+
sponsoring(first: 100) {
16+
totalCount
17+
nodes {
18+
... on User {
19+
login
20+
}
21+
... on Organization {
22+
login
23+
}
24+
}
25+
}
26+
}
27+
}
28+
}

0 commit comments

Comments
 (0)