Created
January 1, 2018 21:48
-
-
Save halkeand/00ca8dc4fa12979c125c66691fd67790 to your computer and use it in GitHub Desktop.
This file contains hidden or 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: "stars:>10000 language:javascript", type: REPOSITORY, first: 10) { | |
repositoryCount | |
edges { | |
node { | |
... on Repository { | |
name | |
diskUsage | |
description | |
stargazers { | |
totalCount | |
} | |
primaryLanguage { | |
name | |
} | |
url | |
createdAt | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment