DeleteCommentPayload
The output of our delete Comment mutation.
type DeleteCommentPayload {
clientMutationId: String
comment: Comment
deletedCommentNodeId: ID
query: Query
workspace: Workspace
authorAccount: Account
authorProfile: Profile
step: Step
section: Section
parentComment: Comment
mentionedComment: Comment
accord: Accord
discussion: Discussion
commentEdge(
orderBy: [CommentsOrderBy!] = [PRIMARY_KEY_ASC]
): CommentsEdge
}
Fields
DeleteCommentPayload.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.
DeleteCommentPayload.comment ● Comment object
The Comment that was deleted by this mutation.
DeleteCommentPayload.deletedCommentNodeId ● ID scalar
DeleteCommentPayload.query ● Query object
Our root query field type. Allows us to run any query from our mutation payload.
DeleteCommentPayload.workspace ● Workspace object
Reads a single Workspace that is related to this Comment.
DeleteCommentPayload.authorAccount ● Account object
Reads a single Account that is related to this Comment.
DeleteCommentPayload.authorProfile ● Profile object
Reads a single Profile that is related to this Comment.
DeleteCommentPayload.step ● Step object
Reads a single Step that is related to this Comment.
DeleteCommentPayload.section ● Section object
Reads a single Section that is related to this Comment.
DeleteCommentPayload.parentComment ● Comment object
Reads a single Comment that is related to this Comment.
DeleteCommentPayload.mentionedComment ● Comment object
Reads a single Comment that is related to this Comment.
DeleteCommentPayload.accord ● Accord object
Reads a single Accord that is related to this Comment.
DeleteCommentPayload.discussion ● Discussion object
Reads a single Discussion that is related to this Comment.
DeleteCommentPayload.commentEdge ● CommentsEdge object
An edge for our Comment. May be used by Relay 1.
DeleteCommentPayload.commentEdge.orderBy ● [CommentsOrderBy!] list enum
The method to use when ordering Comment.
Returned By
deleteComment mutation ● deleteCommentByNodeId mutation