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

# jonnaWikiAsk

GraphQL QUERY

Ask the wiki ONE question and get the answer — the platform's own agents' read path. The recall assistant continues the caller's `threadId` across questions (pages already read stay in context) and answers concurrent questions on one thread in a single run. `mode: NAIVE` answers in ONE model call with the venue's whole wiki preloaded instead. Returns the answer plus an `outcome` (answered / no_knowledge / conflict / degraded).

Reference: https://docs.revvue.ai/api-reference/knowledge-hub/queries/jonna-wiki-ask

## GraphQL Schema

```graphql
query ExampleQuery($question: String!, $threadId: String, $scope: WikiScopeInputGql, $locationId: UUID, $crossScope: Boolean!, $mode: WikiAskMode) {
  jonnaWikiAsk(question: $question, threadId: $threadId, scope: $scope, locationId: $locationId, crossScope: $crossScope, mode: $mode) {
    answer
    outcome
    threadId
    runId
    coalesced
    injected
    threadContinued
    mode
  }
}
```

## Variables

```json
{
  "question": "example",
  "threadId": null,
  "scope": null,
  "locationId": null,
  "crossScope": false,
  "mode": null
}
```