Skip to content

Instantly share code, notes, and snippets.

@davepcallan
Created March 11, 2024 21:55
Show Gist options
  • Save davepcallan/89163cc83ed59cf729aabe9881266633 to your computer and use it in GitHub Desktop.
Save davepcallan/89163cc83ed59cf729aabe9881266633 to your computer and use it in GitHub Desktop.
GitHub GraphQL query to get last 100 (by created date) Merged Pull Requests in Dotnet runtime repo
{
repository(owner: "dotnet", name: "runtime") {
pullRequests(states: MERGED, first: 100, orderBy: {field: CREATED_AT, direction: DESC}) {
edges {
node {
title
url
number
mergedAt
reviewDecision
author {
login
}
}
}
}
}
}
@davepcallan
Copy link
Author

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