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

# Condition

GraphQL object

Reference: https://docs.revvue.ai/api-reference/jonna-ai-agent/types/objects/condition

## Fields

- `source` — Where the inspected value comes from: arg / super_tag / sender / medium / location / language / llm (a yes/no question about the guest's message, answered by a classifier).
- `key` — Narrows the source: the arg path for 'arg', the tag label or 'label.field' for 'super_tag', the yes/no question for 'llm'. Ignored for sender/medium/location/language.
- `op` — Comparison operator.
- `value` — Operand (str/int/float/bool/list). Ignored for 'exists' and 'not_exists'. Lists are for the 'in' operator.

## Definition

```graphql
type Condition {
  source: String!
  key: String!
  op: String!
  value: JSON
}
```