query
Execute read-only queries on ArcadeDB databases. Supports SELECT, MATCH, and other operations using SQL, Cypher, Gremlin, GraphQL, or Mongo syntax.
Instructions
Execute a read-only (idempotent) query against an ArcadeDB database. Use this for SELECT, MATCH, and other read operations. Prefer OpenCypher (language: 'cypher') unless SQL is explicitly requested.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| database | Yes | The name of the database to query | |
| language | No | Query language: 'sql', 'cypher', 'gremlin', 'graphql', 'mongo' | cypher |
| query | Yes | The query to execute | |
| limit | No | Maximum number of results to return (default: 1000) |