Last active
August 25, 2024 17:19
-
-
Save dend/6fbac4a32464e0210ea63874c0e94918 to your computer and use it in GitHub Desktop.
Find cross-referenced issues
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
{ | |
repository(owner: "microsoft", name: "powertoys") { | |
issues(first: 100, states: OPEN) { | |
totalCount | |
pageInfo { | |
startCursor | |
hasNextPage | |
endCursor | |
} | |
edges { | |
node { | |
number | |
timelineItems(first: 200, itemTypes: CROSS_REFERENCED_EVENT) { | |
totalCount | |
pageInfo { | |
startCursor | |
hasNextPage | |
endCursor | |
} | |
nodes { | |
... on CrossReferencedEvent { | |
source { | |
... on Issue { | |
number | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment