Skip to content

Instantly share code, notes, and snippets.

@manekinekko
Last active November 13, 2018 13:49
Show Gist options
  • Save manekinekko/a7303b59daebbd111ccadb3392f2ae48 to your computer and use it in GitHub Desktop.
Save manekinekko/a7303b59daebbd111ccadb3392f2ae48 to your computer and use it in GitHub Desktop.
{
search(first: 1, type: ISSUE, query: "type:pr repo:REPO_NAME COMMIT_SHA") {
nodes {
... on PullRequest {
id
}
}
}
}
# The output
#
# {
# "data": {
# "search": {
# "nodes": [
# {
# "id": "MDExOlB1bGxSZXF1ZXN0MjI3MjE0ODUz"
# }
# ]
# }
# }
# }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment