Schema Documentation

deleteReview

Description

The payload for the deleteReview mutation

Response

Returns a DeleteReviewPayload

Arguments
NameDescription
input - DeleteReviewInput! Input for the deleteReview mutation

Example

Query
mutation deleteReview($input: DeleteReviewInput!){
  deleteReview(input: $input){
    affectedIdclientMutationIdratingreview {
      ...CommentFragment
    }
  }
}
Variables
{"input":DeleteReviewInput}
Response
{"data":{"deleteReview":{"affectedId":4,"clientMutationId":"abc123","rating":987.65,"review":Comment}}}