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

# jonnaAssistant

GraphQL MUTATION

Reference: https://docs.revvue.ai/api-reference/jonna-ai-agent/mutations/jonna-assistant

## GraphQL Schema

```graphql
mutation ExampleMutation($config: AssistantTableInputGql!) {
  jonnaAssistant(config: $config) {
    configObj {
      sessionId
      uniqueRunId
      triggerReason
      configHash
      testMode
      locationMemoryKey
      database
      active
      tagEnabled
      getInvolved
    }
    locationIds
    integrationProfileIds
    excludedLocationIds
    assistantId
    graphId
    metaData
    name
    description
  }
}
```

## Variables

```json
{
  "config": {
    "assistantId": "example",
    "name": "example",
    "description": "example",
    "configObj": {},
    "locationIds": [
      "example"
    ],
    "integrationProfileIds": [
      "example"
    ],
    "excludedLocationIds": [
      "example"
    ]
  }
}
```