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

# jonnaWikiPages

GraphQL QUERY

List page summaries (no body). Use this to discover paths by tag, prefix, author, or update window before reading bodies with `jonnaWikiPage`.

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

## GraphQL Schema

```graphql
query ExampleQuery($scope: WikiScopeInputGql, $locationId: String, $groupIds: [String!], $pathPrefix: String, $updatedAfter: DateTime, $updatedBefore: DateTime, $createdBy: String, $updatedBy: String, $includeAll: Boolean!, $limit: Int!, $offset: Int!, $frontmatter: JSON) {
  jonnaWikiPages(scope: $scope, locationId: $locationId, groupIds: $groupIds, pathPrefix: $pathPrefix, updatedAfter: $updatedAfter, updatedBefore: $updatedBefore, createdBy: $createdBy, updatedBy: $updatedBy, includeAll: $includeAll, limit: $limit, offset: $offset, frontmatter: $frontmatter) {
    count
    items {
      id
      scopeType
      scopeId
      namespace
      path
      title
      summary
      frontmatter
      version
      updatedAt
    }
  }
}
```

## Variables

```json
{
  "scope": null,
  "locationId": null,
  "groupIds": null,
  "pathPrefix": null,
  "updatedAfter": null,
  "updatedBefore": null,
  "createdBy": null,
  "updatedBy": null,
  "includeAll": false,
  "limit": 100,
  "offset": 0,
  "frontmatter": null
}
```