kglite 0.10.8

Pure-Rust knowledge graph engine — Cypher pipeline, snapshot/working CoW transactions, columnar/mmap/disk storage backends, optional dataset loaders (SEC EDGAR, Sodir, Wikidata). PyO3 wrappers live in the sibling kglite-py crate (the Python wheel); embeddable directly from any Rust binary without PyO3 in the dep tree.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 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 pattern_matching;
pub mod statistics;
pub mod traversal;
pub mod value_operations;