nodedb 0.4.0

Local-first, real-time, edge-to-cloud hybrid database for multi-modal workloads
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: BUSL-1.1

//! Protocol-neutral tree-operations DDL family: `CREATE GRAPH INDEX`,
//! `TREE_SUM`, `TREE_CHILDREN`.
//!
//! These build on the existing CSR graph engine for hierarchical aggregation
//! over self-referential collections (e.g. chart of accounts with parent_id).

pub mod children;
pub mod create_index;
pub mod parse;
pub mod sum;
pub mod support;

pub use children::tree_children;
pub use create_index::create_graph_index;
pub use sum::tree_sum;