Skip to content

Instantly share code, notes, and snippets.

@srt32
Last active October 2, 2018 02:56
Show Gist options
  • Save srt32/44ed9514ba1293a7f0299a4bc7662c70 to your computer and use it in GitHub Desktop.
Save srt32/44ed9514ba1293a7f0299a4bc7662c70 to your computer and use it in GitHub Desktop.
find recently changed issues / PR's - https://developer.github.com/v4/explorer/
{
viewer {
pullRequests(first: 10, orderBy: {field: UPDATED_AT, direction: DESC}) {
nodes {
title
closedAt
url
}
}
issues(first: 10, orderBy: {field: UPDATED_AT, direction: DESC}) {
nodes {
title
closedAt
updatedAt
url
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment