nanograph 0.8.1

Embedded typed property graph database. Schema-as-code, compile-time validated, Arrow-native.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod catalog;
mod embedding;
pub mod error;
mod ir;
pub mod json_output;
mod plan;
pub mod query;
pub mod schema;
pub mod store;
mod types;

pub use catalog::build_catalog;
pub use catalog::schema_ir;
pub use ir::ParamMap;
pub use ir::lower::{lower_mutation_query, lower_query};
pub use plan::physical::{MutationExecResult, execute_mutation};
pub use plan::planner::execute_query;
pub use types::{Direction, EdgeId, NodeId, PropType, ScalarType};