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

# WikiGroup

GraphQL object

A named group of locations sharing a knowledge bucket (brand, region, tier, ...).

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

## Fields

- `id` — Group UUID.
- `tenantId` — Tenant the group belongs to.
- `name` — Human-readable group name, unique per tenant.
- `description` — Free-form description of what this group represents.
- `createdAt` — UTC timestamp the group was first created.
- `updatedAt` — UTC timestamp of the most recent group update.
- `locationCount` — Number of locations currently in this group.

## Definition

```graphql
type WikiGroup {
  id: String
  tenantId: String
  name: String
  description: String
  createdAt: DateTime
  updatedAt: DateTime
  locationCount: Int
}
```