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

# ReviewSummary

GraphQL object

Reference: https://docs.revvue.ai/api-reference/companies-locations/types/objects/review-summary

## Fields

- `reviews` — Number of reviews.
- `repliedReviews` — Average replied reviews.
- `repliedReviewsCount` — Count of the reviews the average based on
- `rating` — Sum of rating.
- `ratingCount` — Count of summed values.
- `overall` — Sum of overall rating.
- `overallCount` — Count of summed values.
- `sentimental` — Average sentimental rating.
- `sentimentalCount` — Count of summed values.
- `atmosphere` — Average atmosphere rating.
- `atmosphereCount` — Count of summed values.
- `service` — Average service rating.
- `serviceCount` — Count of summed values.
- `nps` — Net Promoter Score averaged
- `npsCount` — Count of summed values.
- `npsStats` — Detailed % of each score 0-10. The % is of the total count found in npsCount
- `food` — Average food rating.
- `foodCount` — Count of summed values.
- `informative` — Average informative rating.
- `informativeCount` — Count of summed values.
- `cleanliness` — Average cleanliness rating.
- `cleanlinessCount` — Count of summed values.
- `valueForMoney` — Average value for money rating.
- `valueForMoneyCount` — Count of summed values.
- `willReturn` — Average will return rating.
- `willReturnCount` — Average will return rating.
- `accommodatedSpecialNeeds` — Average accommodated special needs rating.
- `accommodatedSpecialNeedsCount` — Average accommodated special needs rating.
- `acceptableWaitTime` — Average acceptable wait time rating.
- `acceptableWaitTimeCount` — Average acceptable wait time rating.
- `sentimentalPositive` — Sentimental category % of total.
- `sentimentalPositiveCount` — Sentimental total category count.
- `sentimentalNeutral` — Sentimental category % of total reviews, value ranging from 0-1.
- `sentimentalNegative` — Sentimental category % of total reviews, value ranging from 0-1.
- `sentimentalNoRating` — Sentimental category % of total reviews, value ranging from 0-1.
- `categorizedSentimentAnalysisStats` — Categorized sentiment analytics aggregated
- `goals` — Goals for various metrics tracked at this location.

## Definition

```graphql
type ReviewSummary {
  reviews: Float
  repliedReviews: Float
  repliedReviewsCount: Int
  rating: Float
  ratingCount: Float
  overall: Float
  overallCount: Float
  sentimental: Float
  sentimentalCount: Float
  atmosphere: Float
  atmosphereCount: Float
  service: Float
  serviceCount: Float
  nps: Float
  npsCount: Float
  npsStats: NpsStats
  food: Float
  foodCount: Float
  informative: Float
  informativeCount: Float
  cleanliness: Float
  cleanlinessCount: Float
  valueForMoney: Float
  valueForMoneyCount: Float
  willReturn: Float
  willReturnCount: Int
  accommodatedSpecialNeeds: Float
  accommodatedSpecialNeedsCount: Int
  acceptableWaitTime: Float
  acceptableWaitTimeCount: Int
  sentimentalPositive: Float
  sentimentalPositiveCount: Int
  sentimentalNeutral: Float
  sentimentalNegative: Float
  sentimentalNoRating: Float
  categorizedSentimentAnalysisStats: [CategorizedSentimentAnalysisStats]
  goals: [GoalsDiff]
}
```