arangors-graph-exporter 0.1.2

Provides lightning-fast graph data access to ArangoDB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod aql;
pub mod aql_graph_loader;
pub mod client;
pub mod config;
pub mod errors;
pub mod graph_loader;
pub mod load;
pub mod request;
mod sharding;
pub mod types;

pub use aql_graph_loader::{AqlGraphLoader, AqlQuery, DataItem, DataType, GraphBatch};
pub use config::{
    DataLoadConfiguration, DataLoadConfigurationBuilder, DatabaseConfiguration,
    DatabaseConfigurationBuilder,
};
pub use graph_loader::{CollectionInfo, GraphLoader};
pub use load::{load_aql_graph, load_custom_graph, load_named_graph};