graphlite 0.0.1

GraphLite - A lightweight ISO GQL Graph Database
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) 2024-2025 DeepGraph Inc.
// SPDX-License-Identifier: Apache-2.0
//
//! Query Coordinator - Central orchestration for query execution
//!
//! The QueryCoordinator provides a unified entry point for query execution,
//! properly coordinating all database components (session, storage, catalog, execution).

pub mod query_coordinator;

pub use query_coordinator::{QueryCoordinator, QueryInfo, QueryPlan, QueryType};

// Re-export types needed for the public API
pub use crate::exec::{QueryResult, Row};