Skip to content

Instantly share code, notes, and snippets.

@tylerbuchea
Last active April 25, 2018 23:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tylerbuchea/b22455ee8238257a575f32d4f63f803e to your computer and use it in GitHub Desktop.
Save tylerbuchea/b22455ee8238257a575f32d4f63f803e to your computer and use it in GitHub Desktop.
# 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