OBJECT
CommitComment
Represents a comment on a given Commit.
link GraphQL Schema definition
- type CommitComment implements Node, Comment, Reactable, RepositoryNode {
- # The author of the comment.
- Author :
- # Identifies the comment body.
- String! :
- # Identifies the comment body rendered to HTML.
- HTML! :
- # Identifies the commit associated with the comment.
- 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 :
- # Are reaction live updates enabled for this subject.
- Boolean! :
- # Identifies the file path associated with the comment.
- String :
- # Identifies the line position associated with the comment.
- Int :
- # A list of reactions grouped by content left on the subject.
- ReactionGroup!] : [
- # A list of Reactions left on the Issue.
- #
- # 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.
- # content: Allows filtering Reactions by emoji.
- # orderBy: Allows specifying the order in which reactions are
- # returned.
- (
- Int, :
- String, :
- Int, :
- String, :
- ReactionContent, :
- ReactionOrder :
- ): ReactionConnection!
- # The websocket channel ID for reaction live updates.
- String! :
- # Identifies the repository associated with the comment.
- Repository! :
- # Identifies the date and time when the object was last updated.
- DateTime! :
- # Identifies the user who created the comment.
- User! @deprecated( reason: "Use `author`." ) :
- # Check if the current viewer can delete this comment.
- Boolean! :
- # Check if the current viewer edit this comment.
- Boolean! :
- # Can user react to this subject
- Boolean! :
- # Errors why the current viewer can not edit this comment.
- CommentCannotEditReason!]! : [
- # Did the viewer author this comment.
- Boolean! :
- }