weftgraph 0.1.0

Graph Storage gear: typed, multi-tenant knowledge graph with search and traversal over a pluggable store
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! `SeaORM` specifics of the built-in store: entities, the property-graph
//! declaration, migrations, and shared storage helpers.
//!
//! Nothing above `infra/` *reaches for* any of it, and the architecture lint
//! that forbids raw SQL in gear code extends to entity access outside this
//! component -- but that is a rule, not a compiler guarantee. The chain
//! `pub mod infra` -> `pub mod storage` -> `pub mod entity` leaves these
//! items public to any crate with a dependency edge on this one;
//! `#[doc(hidden)]` keeps them out of rustdoc and does not restrict
//! visibility. Said plainly because the previous wording claimed the stronger
//! thing.

pub mod entity;
pub mod graph;
pub mod migrations;
pub mod odata_mapper;