Created
August 11, 2021 12:09
-
-
Save joshcarp/973faa8bb70703780d6b6488e2b7c4e2 to your computer and use it in GitHub Desktop.
github graphql to get closing issues linked to a pull request
This file contains 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
{ | |
viewer { | |
repository(name: "glowing-umbrella") { | |
pullRequest(number: 8) { | |
closingIssuesReferences(first:1) { | |
nodes { | |
number | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment