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

# jonnaWikiGroups

GraphQL QUERY

List wiki groups in the current tenant, ordered by name. Use this to discover group UUIDs to pass into scoped queries.

Reference: https://docs.revvue.ai/api-reference/knowledge-hub/queries/jonna-wiki-groups

## GraphQL Schema

```graphql
query ExampleQuery($nameContains: String, $limit: Int!, $offset: Int!) {
  jonnaWikiGroups(nameContains: $nameContains, limit: $limit, offset: $offset) {
    id
    tenantId
    name
    description
    createdAt
    updatedAt
    locationCount
  }
}
```

## Variables

```json
{
  "nameContains": null,
  "limit": 200,
  "offset": 0
}
```