Add support for users with more than 100 gists (#74)

This commit is contained in:
Simon Lecoq
2021-01-23 14:23:14 +01:00
committed by GitHub
parent 7ef8e65951
commit b25c363ed1
3 changed files with 35 additions and 7 deletions

View File

@@ -1,6 +1,9 @@
query Gists {
user(login: "$login") {
gists(last: 100) {
gists($after first: 100, orderBy: {field: UPDATED_AT, direction: DESC}) {
edges {
cursor
}
totalCount
nodes {
stargazerCount