1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Query graph builder module.

mod builder;
mod error;
mod extractors;
mod read;

pub(crate) mod write;
pub(crate) use extractors::*;

pub use builder::QueryGraphBuilder;
pub use error::*;

/// Query graph builder sub-result type.
pub type QueryGraphBuilderResult<T> = Result<T, QueryGraphBuilderError>;