Skip to content

graphcast.db.arango

ArangoDB database implementation.

This package provides ArangoDB-specific implementations of the database interface, including connection management, query execution, and utility functions.

Key Components
  • ArangoConnection: ArangoDB connection implementation
  • Query: AQL query execution and profiling
  • Util: ArangoDB-specific utility functions
Example

from graphcast.db.arango import ArangoConnection conn = ArangoConnection(config) cursor = conn.execute("FOR doc IN users RETURN doc") results = cursor.batch()