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

# NpsStatsInput

GraphQL input

Reference: https://docs.revvue.ai/api-reference/companies-locations/types/inputs/nps-stats-input

## Fields

- `nps` — Score average in period score 0-10
- `npsCount` — Count of nps answers in period
- `nps0` — % of total scored at 0
- `nps1` — % of total scored at 1
- `nps2` — % of total scored at 2
- `nps3` — % of total scored at 3
- `nps4` — % of total scored at 4
- `nps5` — % of total scored at 5
- `nps6` — % of total scored at 6
- `nps7` — % of total scored at 7
- `nps8` — % of total scored at 8
- `nps9` — % of total scored at 9
- `nps10` — % of total scored at 10
- `detractors` — % of total scored between and including 0-6
- `neutrals` — % of total scored between and including 7-8
- `promoters` — % of total scored between and including  9-10

## Definition

```graphql
input NpsStatsInput {
  nps: Float
  npsCount: Float
  nps0: Float
  nps1: Float
  nps2: Float
  nps3: Float
  nps4: Float
  nps5: Float
  nps6: Float
  nps7: Float
  nps8: Float
  nps9: Float
  nps10: Float
  detractors: Float
  neutrals: Float
  promoters: Float
}
```