execute_command
Execute write operations like INSERT, UPDATE, DELETE, and CREATE TYPE against ArcadeDB databases using SQL, Cypher, Gremlin, GraphQL, or MongoDB syntax.
Instructions
Execute a non-idempotent command against an ArcadeDB database. Use this for INSERT, UPDATE, DELETE, CREATE TYPE, and other write operations. Prefer OpenCypher (language: 'cypher') unless SQL is explicitly requested.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| database | Yes | The name of the database | |
| language | No | Command language: 'sql', 'cypher', 'gremlin', 'graphql', 'mongo' | cypher |
| command | Yes | The command to execute | |
| limit | No | Maximum number of results to return (default: 1000) |