Files
openide/plugins/github/resources/graphql/query/addReviewComment.graphql
Ivan Semenov 1dfb67fbb2 [github] load less data when creating a PR comment
IDEA-317079 Fixed

GitOrigin-RevId: d733de33f28da8f14aa899a4a91f999427519ae2
2023-04-04 18:26:13 +00:00

7 lines
335 B
GraphQL

mutation ($reviewId: ID!, $body: String!, $commit: GitObjectID, $file: String, $position: Int, $inReplyTo: ID) {
addPullRequestReviewComment(input: {pullRequestReviewId: $reviewId, body: $body, commitOID: $commit, path: $file, position: $position, inReplyTo: $inReplyTo}) {
comment {
...pullRequestReviewComment
}
}
}