Skip to content
deleteReviewMutation
deleteReview(review: ID!): DeleteReviewResult!

Delete a review the viewer authored. Soft-deletes the row, freeing the viewer to review the same target again later.

Arguments

reviewID!

Returns

DeleteReviewResult!

See DeleteReviewResult for the full shape.

Try it

Example
Query
mutation DeleteReview($review: ID!) {
  deleteReview(review: $review) {
    __typename
  }
}
Variables
{}
POST https://go.sessions.website/api/graphql
deleteReview