Skip to content

Instantly share code, notes, and snippets.

@davepcallan
Created March 11, 2024 22:05
Show Gist options
  • Save davepcallan/3d436450670380cedab81462fa52ab05 to your computer and use it in GitHub Desktop.
Save davepcallan/3d436450670380cedab81462fa52ab05 to your computer and use it in GitHub Desktop.
Search for PRs in dotnet/runtime by a particular user
{
search(query: "repo:dotnet/runtime is:pr author:stephentoub", type: ISSUE, first: 100) {
edges {
node {
... on PullRequest {
title
url
number
createdAt
state
author {
login
}
}
}
}
}
}
@davepcallan
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment