graphlite 0.0.1

GraphLite - A lightweight ISO GQL Graph Database
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) 2024-2025 DeepGraph Inc.
// SPDX-License-Identifier: Apache-2.0
//
pub mod data_stmt;
pub mod ddl_stmt;
pub mod statement_base;
pub mod transaction;

pub use crate::exec::context::ExecutionContext;
pub use statement_base::StatementExecutor;
pub use transaction::{TransactionCoordinator, TransactionStatementExecutor};