Skip to content

Instantly share code, notes, and snippets.

@williamho
Created June 9, 2017 21:25
Show Gist options
  • Save williamho/7410fd07161628bd32f0a084b07e8a40 to your computer and use it in GitHub Desktop.
Save williamho/7410fd07161628bd32f0a084b07e8a40 to your computer and use it in GitHub Desktop.
Get open pull requests in repos with topic by user
{
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