kglite 0.16.7

Pure-Rust embedded Cypher knowledge graph engine with in-memory, mmap, and disk storage, and agent-facing schema introspection
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Shared query-execution engine — used by Cypher AND the fluent API.
//!
//! Pattern matching, filtering, traversal, property retrieval,
//! calculations, and statistics live here. The cypher/ module calls
//! into query/ for its MATCH implementation; the fluent API uses it
//! via filtering/traversal helpers.

pub mod calculations;
pub mod data_retrieval;
pub mod filtering;
pub mod iterators;
pub mod membership;
pub mod pattern_matching;
pub mod statistics;
pub mod traversal;
pub mod value_operations;