Created
June 9, 2017 21:25
-
-
Save williamho/7410fd07161628bd32f0a084b07e8a40 to your computer and use it in GitHub Desktop.
Get open pull requests in repos with topic by user
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
{ | |
search(query: "user:insert_user_here topic:insert_topic_here", type: REPOSITORY, first: 50) { | |
nodes { | |
... on Repository { | |
name | |
pullRequests(states: OPEN, orderBy: {field: CREATED_AT, direction: DESC}, first: 10) { | |
nodes { | |
title | |
author { | |
avatarUrl | |
login | |
url | |
} | |
createdAt | |
url | |
comments { | |
totalCount | |
} | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment