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

# jonnaWikiRenameGroup

GraphQL MUTATION

Rename a wiki group and/or change its description in place. `jonnaWikiUpsertGroup` is idempotent and never updates an existing group, so this is the only route for a group edit.

Reference: https://docs.revvue.ai/api-reference/knowledge-hub/mutations/jonna-wiki-rename-group

## GraphQL Schema

```graphql
mutation ExampleMutation($groupId: String!, $name: String, $description: String) {
  jonnaWikiRenameGroup(groupId: $groupId, name: $name, description: $description) {
    id
    tenantId
    name
    description
    createdAt
    updatedAt
    locationCount
  }
}
```

## Variables

```json
{
  "groupId": "example",
  "name": null,
  "description": null
}
```