Skip to main content

CreateCommentReactionPayload

The output of our create CommentReaction mutation.

type CreateCommentReactionPayload {
clientMutationId: String
commentReaction: CommentReaction
query: Query
workspace: Workspace
createdByWorkspaceAccount: WorkspaceAccount
comment: Comment
customReactionByEmojiCode: CustomReaction
commentReactionEdge(
orderBy: [CommentReactionsOrderBy!] = [PRIMARY_KEY_ASC]
): CommentReactionsEdge
}

Fields

CreateCommentReactionPayload.clientMutationId ● String scalar

The exact same clientMutationId that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations.

CreateCommentReactionPayload.commentReaction ● CommentReaction object

The CommentReaction that was created by this mutation.

CreateCommentReactionPayload.query ● Query object

Our root query field type. Allows us to run any query from our mutation payload.

CreateCommentReactionPayload.workspace ● Workspace object

Reads a single Workspace that is related to this CommentReaction.

CreateCommentReactionPayload.createdByWorkspaceAccount ● WorkspaceAccount object

Reads a single WorkspaceAccount that is related to this CommentReaction.

CreateCommentReactionPayload.comment ● Comment object

Reads a single Comment that is related to this CommentReaction.

CreateCommentReactionPayload.customReactionByEmojiCode ● CustomReaction object

Reads a single CustomReaction that is related to this CommentReaction.

CreateCommentReactionPayload.commentReactionEdge ● CommentReactionsEdge object

An edge for our CommentReaction. May be used by Relay 1.

CreateCommentReactionPayload.commentReactionEdge.orderBy ● [CommentReactionsOrderBy!] list enum

The method to use when ordering CommentReaction.

Returned By

createCommentReaction mutation