Created
June 2, 2017 13:53
-
-
Save misterdai/5c0581a1e7c58f324d69c6bebe060b07 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
{ | |
search(query: "language:JavaScript stars:>100 created:>2017-05-20 sort:stars-asc", type: REPOSITORY, first: 10) { | |
repositoryCount | |
edges { | |
node { | |
... on Repository { | |
name | |
descriptionHTML | |
stargazers { | |
totalCount | |
} | |
issues(states: OPEN) { | |
totalCount | |
} | |
forks { | |
totalCount | |
} | |
pullRequests(states: OPEN) { | |
totalCount | |
} | |
watchers { | |
totalCount | |
} | |
updatedAt | |
createdAt | |
diskUsage | |
homepageUrl | |
license | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment