Skip to main content

CommentReaction

No description

type CommentReaction implements Node {
nodeId: ID!
id: String!
commentId: String!
createdByWorkspaceAccountId: String
emojiCode: String!
workspaceId: String
version: Int!
deletedAt: Datetime
updatedAt: Datetime!
createdAt: Datetime!
workspace: Workspace
createdByWorkspaceAccount: WorkspaceAccount
comment: Comment
customReactionByEmojiCode: CustomReaction
}

Fields

CommentReaction.nodeId ● ID! non-null scalar

A globally unique identifier. Can be used in various places throughout the system to identify this single value.

CommentReaction.id ● String! non-null scalar

CommentReaction.commentId ● String! non-null scalar

CommentReaction.createdByWorkspaceAccountId ● String scalar

CommentReaction.emojiCode ● String! non-null scalar

CommentReaction.workspaceId ● String scalar

CommentReaction.version ● Int! non-null scalar

CommentReaction.deletedAt ● Datetime scalar

CommentReaction.updatedAt ● Datetime! non-null scalar

CommentReaction.createdAt ● Datetime! non-null scalar

CommentReaction.workspace ● Workspace object

Reads a single Workspace that is related to this CommentReaction.

CommentReaction.createdByWorkspaceAccount ● WorkspaceAccount object

Reads a single WorkspaceAccount that is related to this CommentReaction.

CommentReaction.comment ● Comment object

Reads a single Comment that is related to this CommentReaction.

CommentReaction.customReactionByEmojiCode ● CustomReaction object

Reads a single CustomReaction that is related to this CommentReaction.

Interfaces

Node interface

An object with a globally unique ID.

Returned By

commentReaction query ● commentReactionByCommentIdAndCreatedByWorkspaceAccountIdAndEmojiCode query ● commentReactionByNodeId query ● commentReactions query

Member Of

Comment object ● CommentReactionsConnection object ● CommentReactionsEdge object ● CreateCommentReactionPayload object ● CustomReaction object ● DeleteCommentReactionPayload object ● UpsertCommentReactionPayload object ● Workspace object ● WorkspaceAccount object