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

# WikiAskResultGql

GraphQL object

Result of a `jonnaWikiAsk` mutation — one answered question.

Reference: https://docs.revvue.ai/api-reference/knowledge-hub/types/objects/wiki-ask-result-gql

## Fields

- `answer` — The answer, in plain prose ending with the source page path(s) — part by part when the question bundled several parts (a part may say the wiki holds no information about it while the others are answered). Read it literally: a `no_knowledge` outcome is authoritative for the whole question (the venue has NO documented answer — do not search harder); a `conflict` outcome means the wiki holds two values and the fact is unresolved (never pick one); a `degraded` outcome means the assistant was unavailable and `answer` is a `[wiki_recall: DEGRADED …]`-stamped block of RAW search hits, not an answer.
- `outcome` — `answered` | `no_knowledge` | `conflict` | `degraded` — see `answer`.
- `threadId` — The langgraph thread the answer was produced on. Pass the same id on the next question.
- `runId` — The recall run that answered — one run may answer several questions.
- `coalesced` — How many questions that run answered in one go (concurrent questions on one thread coalesce).
- `injected` — True when this question rode along in another request's run instead of starting its own.
- `threadContinued` — True when the thread already held earlier questions — the assistant reused what it had read.
- `mode` — Which recall path answered: `agent` (the ReAct assistant with wiki tools) or `naive` (one model call with the venue's whole wiki preloaded, no tools).

## Definition

```graphql
type WikiAskResultGql {
  answer: String!
  outcome: WikiAskOutcome!
  threadId: String!
  runId: String!
  coalesced: Int!
  injected: Boolean!
  threadContinued: Boolean!
  mode: WikiAskMode!
}
```