Skip to main content

grafeo_adapters/
lib.rs

1//! # grafeo-adapters
2//!
3//! The integration layer - parsers, storage backends, and plugins.
4//!
5//! This is where external formats meet Grafeo's internal representation.
6//! You probably don't need this crate directly unless you're extending Grafeo.
7//!
8//! ## Modules
9//!
10//! - [`query`] - Parsers for GQL, Cypher, SPARQL, Gremlin, GraphQL
11//! - [`storage`] - Persistence: write-ahead log, memory-mapped files
12//! - [`plugins`] - Extension points for custom functions and algorithms
13
14pub mod plugins;
15pub mod query;
16pub mod storage;