Skip to content

Instantly share code, notes, and snippets.

@halkeye
Created January 22, 2020 07:28
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 halkeye/653f9929fda67602cd2ef8817ce4ce30 to your computer and use it in GitHub Desktop.
Save halkeye/653f9929fda67602cd2ef8817ce4ce30 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 {
git_plugin: repository(owner: "jenkinsci", name: "git-plugin") {
object(expression: "master:README.adoc") {
... on Blob {
text
}
}
}
# https://github.com/jenkinsci/git-plugin/blob/master/README.adoc
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment