A Claude-written graph database in Rust. Use at your own risk.
at main 10 lines 219 B view raw
1pub mod ast; 2pub mod parser; 3pub mod lexer; 4pub mod planner; 5pub mod executor; 6 7pub use ast::{CypherQuery, Expression, Pattern}; 8pub use parser::parse_cypher; 9pub use planner::QueryPlan; 10pub use executor::QueryExecutor;