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