OBJECT
IssueComment
Represents a comment on an Issue.
link GraphQL Schema definition
- type IssueComment implements Node, Comment, Reactable, RepositoryNode {
- # The author of the comment.
- Author :
- # Identifies the comment body.
- 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! :
- # 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! :
- # Identifies the issue associated with the comment.
- Issue! :
- # The moment the editor made the last edit
- DateTime :
- # Are reaction live updates enabled for this subject.
- Boolean! :
- # 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! :
- # The repository associated with this node.
- Repository! :
- # 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! :
- # 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! :
- # The websocket channel ID for live updates.
- #
- # Arguments
- # channel: The channel to use.
- IssuePubSubTopic!): String! ( :
- }