Skip to content

Instantly share code, notes, and snippets.

@localden
Created November 19, 2021 19:39
Show Gist options
  • Save localden/be0145ab3ee27e96065ed2b6eb312f57 to your computer and use it in GitHub Desktop.
Save localden/be0145ab3ee27e96065ed2b6eb312f57 to your computer and use it in GitHub Desktop.
Find GitHub issues with cross-referenced items
{
repository(owner: "microsoft", name: "powertoys") {
issues(first: 100, states: OPEN) {
totalCount
edges {
node {
title
url
timelineItems(first: 100, itemTypes: CROSS_REFERENCED_EVENT) {
nodes {
__typename
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment