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

# WikiPageSummary

GraphQL object

Lightweight page metadata without `content`. Used in listings and search hits.

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

## Fields

- `id` — Page UUID.
- `scopeType` — Bucket kind: GROUP or LOCATION.
- `scopeId` — UUID of the scope (group or location).
- `namespace` — Slash-delimited folder-style label within the scope.
- `path` — Slash-delimited path, unique within the scope.
- `title` — Display title.
- `summary` — Short summary (~1 sentence).
- `frontmatter` — Typed JSON properties for filtering / display (e.g. `type`, `owner`, `applies_to`, `last_revised`).
- `version` — Monotonic version, bumped on every write.
- `updatedAt` — UTC timestamp of latest write.

## Definition

```graphql
type WikiPageSummary {
  id: String
  scopeType: WikiScope
  scopeId: String
  namespace: String
  path: String
  title: String
  summary: String
  frontmatter: JSON
  version: Int
  updatedAt: DateTime
}
```