Created
July 13, 2017 20:48
-
-
Save shapr/5d84727c3355581da61ea5488c2a57ed to your computer and use it in GitHub Desktop.
github enterprise graphql query
This file contains hidden or 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 { | |
login | |
name | |
bio | |
isHireable | |
createdAt | |
} | |
repository(owner: "owner", name: "reponame") { | |
pullRequests(last: 20) { | |
totalCount | |
edges{ | |
node { | |
title | |
mergeable | |
state | |
body | |
comments (last: 5) { | |
edges { | |
node { | |
body | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment