arrow-graph 0.3.0

Arrow-native graph processing engine with SQL interface
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod extension;
pub mod functions;
pub mod graph_functions;
pub mod gql_parser;
pub mod window_functions;
pub mod recursive_cte;
pub mod temporal_queries;
pub mod multi_graph;

pub use extension::GraphSqlExtension;
pub use graph_functions::register_all_graph_functions;
pub use gql_parser::{GqlParser, GqlPattern, GqlNode, GqlEdge};
pub use window_functions::register_window_functions;
pub use recursive_cte::{RecursiveCteProcessor, GraphPath, RecursiveQueryConfig};
pub use temporal_queries::{TemporalGraphProcessor, TemporalEdge, TimeWindow, TemporalQueryConfig};
pub use multi_graph::{MultiGraphProcessor, NamedGraph, MultiGraphEdge, MultiGraphConfig};