OBJECT
PullRequestReview
A review object for a given pull request.
link GraphQL Schema definition
- type PullRequestReview implements Node, Comment, RepositoryNode {
- # The author of the comment.
- Author :
- # Identifies the pull request review body.
- String! :
- # The body of this review rendered to HTML.
- HTML! :
- # The body of this review rendered as plain text.
- String! :
- # A list of review comments for the current pull request review.
- #
- # Arguments
- # first: Returns the first _n_ elements from the list.
- # after: Returns the elements in the list that come after the
- # specified global ID.
- # last: Returns the last _n_ elements from the list.
- # before: Returns the elements in the list that come before the
- # specified global ID.
- Int, : String, : Int, : String): PullRequestReviewCommentConnection! ( :
- # Identifies the commit associated with this pull request review.
- Commit :
- # Identifies the date and time when the object was created.
- DateTime! :
- # Check if this comment was created via an email reply.
- Boolean! :
- # Identifies the primary key from the database.
- Int @deprecated( reason: "Exposed database IDs will eventually be removed in favor of global Relay IDs." ) :
- # The editor of the comment.
- Author :
- ID! :
- # The moment the editor made the last edit
- DateTime :
- # The HTTP URL permalink for this PullRequestReview.
- URI! :
- # Identifies the pull request associated with this pull request review.
- PullRequest! :
- # The repository associated with this node.
- Repository! :
- # Identifies the current state of the pull request review.
- PullRequestReviewState! :
- # Identifies when the Pull Request Review was submitted
- DateTime :
- # Identifies the date and time when the object was last updated.
- DateTime! :
- # The HTTP URL permalink for this PullRequestReview.
- URI! :
- # Check if the current viewer can delete this comment.
- Boolean! :
- # Check if the current viewer edit this comment.
- Boolean! :
- # Errors why the current viewer can not edit this comment.
- CommentCannotEditReason!]! : [
- # Did the viewer author this comment.
- Boolean! :
- }
link Require by
- AddPullRequestReviewPayloadAutogenerated return type of AddPullRequestReview
- DeletePullRequestReviewPayloadAutogenerated return type of DeletePullRequestReview
- DismissPullRequestReviewPayloadAutogenerated return type of DismissPullRequestReview
- IssueTimelineItemAn item in an issue/pull request timeline
- PullRequestReviewCommentA review comment associated with a given repository pull request.
- PullRequestReviewConnectionThe connection type for PullRequestReview.
- PullRequestReviewEdgeAn edge in a connection.
- ReviewDismissedEventRepresents a 'review_dismissed' event on a given issue or pull request.
- SubmitPullRequestReviewPayloadAutogenerated return type of SubmitPullRequestReview
- UpdatePullRequestReviewPayloadAutogenerated return type of UpdatePullRequestReview