Last active
November 16, 2017 07:37
-
-
Save balthazar/9be2a8f60fa3e7fe9398cc767dc93cda to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
repository(owner: "freeCodeCamp", name: "freeCodeCamp") { | |
stargazers(first: 50) { | |
pageInfo { | |
endCursor | |
hasNextPage | |
hasPreviousPage | |
startCursor | |
} | |
stars: edges { | |
starredAt | |
user: node { | |
id | |
name | |
login | |
avatarUrl | |
location | |
createdAt | |
followers { totalCount } | |
following { totalCount } | |
repositories { totalCount } | |
pullRequests { totalCount } | |
starredRepositories { totalCount } | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment