INTERFACE
Comment
Represents a comment.
link GraphQL Schema definition
- interface Comment {
- # The author of the comment.
- : Author
- # The comment body as Markdown.
- : String!
- # The comment body rendered to HTML.
- : HTML!
- # Identifies the date and time when the object was created.
- : DateTime!
- # Check if this comment was created via an email reply.
- : Boolean!
- # The editor of the comment.
- : Author
- : ID!
- # The moment the editor made the last edit
- : DateTime
- # Identifies the date and time when the object was last updated.
- : DateTime!
- # 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
- CommitCommentRepresents a comment on a given Commit.
- GistCommentRepresents a comment on an Gist.
- IssueAn Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.
- IssueCommentRepresents a comment on an Issue.
- PullRequestA repository pull request.
- PullRequestReviewA review object for a given pull request.
- PullRequestReviewCommentA review comment associated with a given repository pull request.