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

# CategorizedSentimentAnalysis

GraphQL object

Reference: https://docs.revvue.ai/api-reference/reviews/types/objects/categorized-sentiment-analysis

## Fields

- `category` — Category the sentiment is related to.
- `subCategory` — Sub category the sentiment is related to.
- `sentiment` — Positive, neutral or negative.
- `text` — The text in the review.

## Definition

```graphql
type CategorizedSentimentAnalysis {
  category: String
  subCategory: String
  sentiment: String
  text: String
}
```