Skip to content

Instantly share code, notes, and snippets.

@veeral-patel
Created April 3, 2020 23:45
Show Gist options
  • Save veeral-patel/89dd6427f2b2da0880a6d5a0e3048a38 to your computer and use it in GitHub Desktop.
Save veeral-patel/89dd6427f2b2da0880a6d5a0e3048a38 to your computer and use it in GitHub Desktop.
query {
repository(owner: "facebook", name: "react") {
defaultBranchRef {
name
target {
... on Commit {
history(first: 2) {
edges {
node {
messageHeadline
author {
user {
login
}
}
committedDate
statusCheckRollup {
state
}
signature {
isValid
}
abbreviatedOid
}
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment