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

# WikiGrepHit

GraphQL object

One literal/regex match inside a page body, with line + snippet.

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

## Fields

- `pageId` — UUID of the page that contains the match.
- `path` — Path of the matching page.
- `title` — Title of the matching page.
- `scopeType` — Scope kind of the matching page.
- `scopeId` — Scope UUID of the matching page.
- `lineNo` — 1-based line number inside the page body.
- `column` — 1-based column where the match starts.
- `snippet` — Short excerpt around the match (matched text in context).

## Definition

```graphql
type WikiGrepHit {
  pageId: String
  path: String
  title: String
  scopeType: WikiScope
  scopeId: String
  lineNo: Int
  column: Int
  snippet: String
}
```