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

# jonnaWikiAddSource

GraphQL MUTATION

Register an external document reference. Idempotent on `(refType, refId)` — re-adds update the title / uri / metadata.

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

## GraphQL Schema

```graphql
mutation ExampleMutation($input: WikiAddSourceInputGql!) {
  jonnaWikiAddSource(input: $input) {
    id
    tenantId
    scopeType
    scopeId
    namespace
    refType
    refId
    title
    uri
    frontmatter
  }
}
```

## Variables

```json
{
  "input": {
    "scope": {
      "scopeType": "GROUP",
      "scopeId": "example",
      "namespace": "example"
    },
    "refType": "example",
    "refId": "example",
    "title": "example",
    "uri": "example",
    "frontmatter": {}
  }
}
```