DeleteCommentReactionPayload
The output of our delete CommentReaction mutation.
type DeleteCommentReactionPayload {
clientMutationId: String
commentReaction: CommentReaction
deletedCommentReactionNodeId: ID
query: Query
workspace: Workspace
createdByWorkspaceAccount: WorkspaceAccount
comment: Comment
customReactionByEmojiCode: CustomReaction
commentReactionEdge(
orderBy: [CommentReactionsOrderBy!] = [PRIMARY_KEY_ASC]
): CommentReactionsEdge
}
Fields
DeleteCommentReactionPayload.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.
DeleteCommentReactionPayload.commentReaction ● CommentReaction object
The CommentReaction that was deleted by this mutation.
DeleteCommentReactionPayload.deletedCommentReactionNodeId ● ID scalar
DeleteCommentReactionPayload.query ● Query object
Our root query field type. Allows us to run any query from our mutation payload.
DeleteCommentReactionPayload.workspace ● Workspace object
Reads a single Workspace that is related to this CommentReaction.
DeleteCommentReactionPayload.createdByWorkspaceAccount ● WorkspaceAccount object
Reads a single WorkspaceAccount that is related to this CommentReaction.
DeleteCommentReactionPayload.comment ● Comment object
Reads a single Comment that is related to this CommentReaction.