Last active
April 25, 2018 23:16
-
-
Save tylerthebuildor/b22455ee8238257a575f32d4f63f803e 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
# Type queries into this side of the screen, and you will | |
# see intelligent typeaheads aware of the current GraphQL type schema, | |
# live syntax, and validation errors highlighted within the text. | |
# We'll get you started with a simple query showing your username! | |
query { | |
repositoryOwner(login:"facebook"){ | |
repository(name:"react") { | |
id | |
name | |
issues { | |
totalCount | |
} | |
filteredIssues:issues (first:10 states:[OPEN] orderBy:{field:COMMENTS direction:DESC}) { | |
totalCount | |
edges { | |
node { | |
id | |
title | |
createdAt | |
updatedAt | |
comments { | |
totalCount | |
} | |
reactions { | |
totalCount | |
} | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment