-
-
Save zautomata/06a913a6977c7ca068db05d4da728b66 to your computer and use it in GitHub Desktop.
Revisions
-
katopz revised this gist
Sep 17, 2016 . 1 changed file with 6 additions and 6 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,24 +1,24 @@ // Try at : https://graphql-explorer.githubapp.com/ query { repositoryOwner (login: "facebook") { repositories { totalCount } repository(name: "react") { description forks { totalCount } issues { totalCount } stargazers { totalCount } watchers { totalCount } pullRequests { totalCount } labels(first:10) { -
katopz created this gist
Sep 16, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,40 @@ // Try at : https://graphql-explorer.githubapp.com/ query { repositoryOwner (login: "facebook") { repositories() { totalCount } repository(name: "react") { description forks() { totalCount } issues() { totalCount } stargazers() { totalCount } watchers() { totalCount } pullRequests() { totalCount } labels(first:10) { edges { node { name } } } milestones(first:10) { edges { node { title } } } } } }