uni-query 2.5.0

OpenCypher query parser, planner, and vectorized executor for Uni
docs.rs failed to build uni-query-2.5.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: uni-query-2.4.1

Query execution layer for the Uni graph database.

This crate provides OpenCypher query parsing, logical planning, and execution against Uni's object-store-backed property graph.

Modules

  • [query] — planner, executor, DataFusion integration, pushdown logic
  • [types] — public value types (Value, Node, Edge, Path, etc.)

Quick Start

let executor = Executor::new(storage);
let planner = QueryPlanner::new(schema);
let plan = planner.plan(cypher_ast)?;
let result = executor.execute_plan(plan, &params).await?;