Schema Documentation

restoreComment

Description

The payload for the restoreComment mutation

Response

Returns a RestoreCommentPayload

Arguments
NameDescription
input - RestoreCommentInput! Input for the restoreComment mutation

Example

Query
mutation restoreComment($input: RestoreCommentInput!){
  restoreComment(input: $input){
    clientMutationIdcomment {
      ...CommentFragment
    }restoredId
  }
}
Variables
{"input":RestoreCommentInput}
Response
{"data":{"restoreComment":{"clientMutationId":"xyz789","comment":Comment,"restoredId":4}}}