Skip to content

Instantly share code, notes, and snippets.

@mingliangguo
Last active February 27, 2020 20:21
Show Gist options
  • Save mingliangguo/b22c892e8039a17639f9546c96cb36a5 to your computer and use it in GitHub Desktop.
Save mingliangguo/b22c892e8039a17639f9546c96cb36a5 to your computer and use it in GitHub Desktop.
Github GraphQL API to find all comments by a user #graphql #github
{
user(login: "john-doe") {
commitComments(first: 100) {
nodes {
commit {
repository {
nameWithOwner
}
abbreviatedOid
}
body
}
}
issueComments(first: 100) {
nodes {
repository {
nameWithOwner
}
issue {
number
}
pullRequest {
number
}
body
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment