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

# jonnaWikiIndex

GraphQL QUERY

Tree-shaped overview of every page visible to this run. Best first call when you don't know what's in the wiki — returns a markdown directory tree plus the flat `(path, title, scope)` list.

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

## GraphQL Schema

```graphql
query ExampleQuery($scope: WikiScopeInputGql, $locationId: String, $groupIds: [String!], $pathPrefix: String, $includeAll: Boolean!, $limit: Int!) {
  jonnaWikiIndex(scope: $scope, locationId: $locationId, groupIds: $groupIds, pathPrefix: $pathPrefix, includeAll: $includeAll, limit: $limit) {
    tree
    count
    entries {
      path
      title
      scopeType
      scopeId
      namespace
    }
  }
}
```

## Variables

```json
{
  "scope": null,
  "locationId": null,
  "groupIds": null,
  "pathPrefix": null,
  "includeAll": false,
  "limit": 1000
}
```