> 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.

# processedReviews

GraphQL QUERY

Reference: https://docs.revvue.ai/api-reference/reviews/queries/processed-reviews

## GraphQL Schema

```graphql
query ExampleQuery($queryOffset: Int, $queryLimit: Int, $ids: [String], $rawReviewIds: [String], $locationId: [String], $locationExternalId: [String], $overall: [Float], $rating: [Float], $fromDate: DateTime, $toDate: DateTime, $source: [IntegrationSource], $orderBy: [OrderBy], $isTextInReview: Boolean, $replyStatus: [ReviewReplyStatus], $category: [TagCategories], $sentiment: [SentimentCategory], $searchKeyWords: [String], $stateSorting: [ColumnSorting], $canReply: Boolean) {
  processedReviews(queryOffset: $queryOffset, queryLimit: $queryLimit, ids: $ids, rawReviewIds: $rawReviewIds, locationId: $locationId, locationExternalId: $locationExternalId, overall: $overall, rating: $rating, fromDate: $fromDate, toDate: $toDate, source: $source, orderBy: $orderBy, isTextInReview: $isTextInReview, replyStatus: $replyStatus, category: $category, sentiment: $sentiment, searchKeyWords: $searchKeyWords, stateSorting: $stateSorting, canReply: $canReply) {
    documents {
      id
      activeState
      created
      changed
      changedBy
      tenantId
      reviewTime
      locationExternalId
      locationId
      rawReviewId
    }
    count
  }
}
```

## Variables

```json
{
  "queryOffset": 0,
  "queryLimit": 0,
  "ids": [
    "example"
  ],
  "rawReviewIds": [
    "example"
  ],
  "locationId": [
    "example"
  ],
  "locationExternalId": [
    "example"
  ],
  "overall": [
    0
  ],
  "rating": [
    0
  ],
  "fromDate": "2026-09-18T23:46:18.200Z",
  "toDate": "2026-09-18T23:46:18.200Z",
  "source": [
    "GOOGLE"
  ],
  "orderBy": [
    {
      "sortField": "DATE",
      "descOrder": true
    }
  ],
  "isTextInReview": true,
  "replyStatus": [
    "REPLIED"
  ],
  "category": [
    "FOOD"
  ],
  "sentiment": [
    "POSITIVE"
  ],
  "searchKeyWords": [
    "example"
  ],
  "stateSorting": [
    {
      "column": "example",
      "direction": "ASC"
    }
  ],
  "canReply": true
}
```