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

# CategorizedSentimentAnalysisStats

GraphQL object

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

## Fields

- `category` — Category the sentiment is related to.
- `subCategory` — Sub category the sentiment is related to.
- `avgSentiment` — Calculated in summary, average sentiment.
- `avgSentimentCount` — The total mentions.
- `negativeSentiment` — The total mentions.
- `neutralSentiment` — The total mentions.
- `positiveSentiment` — The total mentions.

## Definition

```graphql
type CategorizedSentimentAnalysisStats {
  category: String
  subCategory: String
  avgSentiment: Float
  avgSentimentCount: Float
  negativeSentiment: Float
  neutralSentiment: Float
  positiveSentiment: Float
}
```