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

# surveyTheme

GraphQL QUERY

Reference: https://docs.revvue.ai/api-reference/surveys/queries/survey-theme

## GraphQL Schema

```graphql
query ExampleQuery($queryOffset: Int, $queryLimit: Int, $activeState: ActiveState, $ids: [UUID], $countOnly: Boolean, $freeTextSearch: String, $filterOperator: LogicalOperator, $filters: [FilterConditionInput], $name: [String]) {
  surveyTheme(queryOffset: $queryOffset, queryLimit: $queryLimit, activeState: $activeState, ids: $ids, countOnly: $countOnly, freeTextSearch: $freeTextSearch, filterOperator: $filterOperator, filters: $filters, name: $name) {
    documents {
      id
      tenantId
      createdBy
      documentType
      activeState
      created
      changed
      changedBy
      name
      clientTheme
    }
    count
  }
}
```

## Variables

```json
{
  "queryOffset": 0,
  "queryLimit": 0,
  "activeState": "ACTIVE",
  "ids": [
    "example"
  ],
  "countOnly": true,
  "freeTextSearch": "example",
  "filterOperator": "AND",
  "filters": [
    {
      "column": "example",
      "operator": "EQ",
      "value": "example",
      "jsonPath": "example"
    }
  ],
  "name": [
    "example"
  ]
}
```