Skip to content

Instantly share code, notes, and snippets.

@lee-dohm
Created June 11, 2019 20:28
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 lee-dohm/b6b25bfef1e16e540f4df11ac87f6960 to your computer and use it in GitHub Desktop.
Save lee-dohm/b6b25bfef1e16e540f4df11ac87f6960 to your computer and use it in GitHub Desktop.
GraphQL: Get list of issues assigned to a user given an organization name
{
search(query: "org:org-name is:issue assignee:user-name", type: ISSUE, first: 100) {
nodes {
... on Issue {
url
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment