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

# WikiPages

GraphQL object

Paged listing of page summaries.

Reference: https://docs.revvue.ai/api-reference/knowledge-hub/types/objects/wiki-pages

## Fields

- `count` — Number of items in `items` (this page, not the total).
- `items` — Page summaries, no body.

## Definition

```graphql
type WikiPages {
  count: Int!
  items: [WikiPageSummary!]!
}
```