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

# jonnaWikiPage

GraphQL QUERY

Read one page (with body) by `path`. Walks the (location → groups) scope hierarchy when no explicit `scope` is given. Returns null if no matching page exists.

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

## GraphQL Schema

```graphql
query ExampleQuery($path: String!, $scope: WikiScopeInputGql, $locationId: String, $groupIds: [String!]) {
  jonnaWikiPage(path: $path, scope: $scope, locationId: $locationId, groupIds: $groupIds) {
    id
    tenantId
    scopeType
    scopeId
    namespace
    path
    title
    summary
    content
    sourceIds
  }
}
```

## Variables

```json
{
  "path": "example",
  "scope": null,
  "locationId": null,
  "groupIds": null
}
```