kglite 0.10.27

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
//! Fluent query-chain implementation.
//!
//! The fluent API is a peer of `cypher` under `languages/` — both call
//! into `crate::graph::core` for shared query primitives. This module
//! owns the Rust-side chain operations; the PyO3 bindings live in
//! `crate::graph::pyapi::kg_fluent`.

pub mod filtering;
pub mod schema_ops;
pub mod selection;
pub mod traversal;