sqlitegraph 2.2.3

Embedded graph database with full ACID transactions, HNSW vector search, dual backend support, and comprehensive graph algorithms library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Lightweight triple pattern matcher for SQLiteGraph.
//!
//! Provides a minimal, deterministic pattern matcher for basic Neo4j-style patterns:
//! (start_label)-[edge_type]->(end_label) with optional property filters.
//!
//! This is designed to be a simpler alternative to the full pattern system,
//! focusing on single-hop patterns with equality-based property filtering.

pub use matcher::{TripleMatch, match_triples};
pub use pattern::PatternTriple;

mod matcher;
mod pattern;
mod property;
mod query;

#[cfg(test)]
mod tests;