Last active
November 13, 2018 13:49
-
-
Save manekinekko/a7303b59daebbd111ccadb3392f2ae48 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
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