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

# jonnaWikiDeletePage

GraphQL MUTATION

PERMANENTLY delete a page. The page row is removed; cannot be undone — confirm with the user before calling.

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

## GraphQL Schema

```graphql
mutation ExampleMutation($scope: WikiScopeInputGql!, $path: String!) {
  jonnaWikiDeletePage(scope: $scope, path: $path) {
    deleted
    path
  }
}
```

## Variables

```json
{
  "scope": {
    "scopeType": "GROUP",
    "scopeId": "example",
    "namespace": "example"
  },
  "path": "example"
}
```