graphar-flight 0.1.0

Apache Arrow Flight SQL service over FalkorDB — Cypher in, Arrow out
Documentation
mod tests;

pub mod auth;
pub mod convert;
pub mod error;
pub mod export;
pub mod falkor;
pub mod registry;
pub mod server;
pub mod service;

pub use auth::{AuthConfig, Authorizer, BasicCredential, Identity};
pub use error::{FlightSqlError, Result};
pub use export::{ExportReport, export_cypher, export_cypher_chunked};
#[cfg(feature = "skade")]
pub use export::{append_arrow_to_iceberg, export_cypher_to_iceberg};
pub use falkor::FalkorExecutor;
pub use registry::SchemaRegistry;
pub use server::{ServerOptions, TlsOptions, run_server, run_server_with};
pub use service::CypherFlightService;