kglite 0.15.5

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
//! Query-interface languages.
//!
//! Each language under `languages/` produces results by calling
//! into the shared primitives in `crate::graph::core`. Languages
//! are peers — a new language (SPARQL, GraphQL, custom DSL) slots
//! in alongside `cypher` and `fluent` without disturbing either.

pub mod cypher;
pub mod fluent;