Skip to content

Instantly share code, notes, and snippets.

@locks
Created April 2, 2019 14:26
Show Gist options
  • Save locks/413e8f715de2cd5c7d50463da84db654 to your computer and use it in GitHub Desktop.
Save locks/413e8f715de2cd5c7d50463da84db654 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 {
viewer {
organizations(first: 5) {
edges {
node {
id
name
repositories(first: 50) {
edges {
node {
issues(first: 50) {
edges {
node {
title
}
}
}
pullRequests(first: 50) {
edges {
node {
title
}
}
}
}
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment