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
17
18
//! Domain layer. No entity, statement or connection is reachable from here:
//! the only way to data is through the ports in
//! `graph_storage_sdk::plugin_api` (`DOMAIN --> PORT`).

pub mod admission;
pub mod authz;
pub mod embedding;
pub mod error;
pub mod evolution;
pub mod identity;
pub mod local_client;
pub mod migration;
pub mod ontology;
pub mod ownership;
pub mod projection;
pub mod service;
pub mod tally;
pub mod traversal;