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

# jonnaWikiWritePage

GraphQL MUTATION

Create or update a wiki page. Idempotent on `(scope, namespace, path)` — re-calling bumps `version`.

Reference: https://docs.revvue.ai/api-reference/knowledge-hub/mutations/jonna-wiki-write-page

## GraphQL Schema

```graphql
mutation ExampleMutation($input: WikiWritePageInputGql!) {
  jonnaWikiWritePage(input: $input) {
    id
    tenantId
    scopeType
    scopeId
    namespace
    path
    title
    summary
    content
    sourceIds
  }
}
```

## Variables

```json
{
  "input": {
    "scope": {
      "scopeType": "GROUP",
      "scopeId": "example",
      "namespace": "example"
    },
    "path": "example",
    "title": "example",
    "content": "example",
    "summary": "example",
    "sourceIds": [
      "example"
    ],
    "frontmatter": {},
    "expectedVersion": 0
  }
}
```