Get blame of diff in pull request. #24867
Answered
by
lee-dohm
heckad
asked this question in
API and Webhooks
-
How to get the blame of diff and diff using graphql API? In documentation didn`t find information about gatting blame in a pull request. |
Beta Was this translation helpful? Give feedback.
Answered by
lee-dohm
Aug 14, 2019
Replies: 1 comment
-
From the I hope that helps! |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From the
PullRequest
object you would use thecommits
connection to get the list ofPullRequestCommit
objects. From each of those, you can use thecommit
field to get theCommit
object. And from theCommit
object, you can get the blame information through theblame
field.I hope that helps!