Skip to content

Instantly share code, notes, and snippets.

@talum
Created August 11, 2017 02:46
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 talum/8fb3a4275d5a267e176e026d82335b80 to your computer and use it in GitHub Desktop.
Save talum/8fb3a4275d5a267e176e026d82335b80 to your computer and use it in GitHub Desktop.
fun graphql query
query {
repository(name: "ironboard", owner:"flatiron-labs") {
name
ref(qualifiedName: "master") {
target {
... on Commit {
id
history(first: 100, author: {id: "MDQ6VXNlcjEyNDA1MDQ="}, after: "5262ce37ca79e49f28041cb7a0fdd766192933d8 299") {
pageInfo {
hasNextPage
}
edges {
node {
oid
message
author() {
name
date
}
}
cursor
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment