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

# jonnaWikiLocationGroups

GraphQL QUERY

Return the wiki-group UUIDs one location belongs to — the reverse of `jonnaWikiGroupLocations`. Pass them back as `groupIds` so a location-scoped read also sees the group-scoped pages that are meant to be visible from that venue.

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

## GraphQL Schema

```graphql
query ExampleQuery($locationId: String!) {
  jonnaWikiLocationGroups(locationId: $locationId)
}
```

## Variables

```json
{
  "locationId": "example"
}
```