Last active
October 2, 2018 02:56
-
-
Save srt32/44ed9514ba1293a7f0299a4bc7662c70 to your computer and use it in GitHub Desktop.
find recently changed issues / PR's - https://developer.github.com/v4/explorer/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
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