Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@tcbyrd
Created December 13, 2018 22:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tcbyrd/bc30eec6bbba535462b2c76f772429f3 to your computer and use it in GitHub Desktop.
Save tcbyrd/bc30eec6bbba535462b2c76f772429f3 to your computer and use it in GitHub Desktop.
Get pinned issues from repository id
{
node(id: $nodeId) {
... on Repository {
pinnedIssues(first: 10) {
nodes {
issue {
title
body
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment