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

# WikiScopeInputGql

GraphQL input

Pick exactly one bucket of the wiki. `scope_type=GROUP` → `scope_id` is the wiki_group UUID. `scope_type=LOCATION` → `scope_id` is the location UUID (as text). Optionally pass `namespace` to sub-divide the bucket — slash-delimited folder labels like 'customers' or 'customers/vip'.

Reference: https://docs.revvue.ai/api-reference/knowledge-hub/types/inputs/wiki-scope-input-gql

## Fields

- `scopeType` — Bucket kind: GROUP or LOCATION.
- `scopeId` — UUID of the group or location that owns the bucket.
- `namespace` — Optional slash-delimited folder-style label inside the bucket. Empty / null = root namespace. On reads it's a prefix; on writes it's matched exactly.

## Definition

```graphql
input WikiScopeInputGql {
  scopeType: WikiScope!
  scopeId: String
  namespace: String
}
```