> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.revvue.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.revvue.ai/_mcp/server.

# ReviewReply

GraphQL input

Reference: https://docs.revvue.ai/api-reference/reviews/types/inputs/review-reply

## Fields

- `reviewId` — Review id.
- `source` — Source of the review.
- `skip` — Skip the review.
- `unskip` — Clear a SKIPPED/IGNORED status and return the review to the reply queue. Local bookkeeping only — nothing is posted to the source.
- `reply` — Review reply.
- `deleteReply` — Delete the reply.

## Definition

```graphql
input ReviewReply {
  reviewId: UUID
  source: IntegrationSource
  skip: Boolean
  unskip: Boolean
  reply: String
  deleteReply: Boolean
}
```