gqb 0.10.1

GQL Query Builder API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Convenient import of types for gqb.

pub use crate::utils::ToGraphLabel as _;
pub use crate::{
  Builder, CreateEdgeTemplate, IntoCreateEdgeTemplate, IntoCreateNodeTemplate,
  IntoMatchEdgeTemplate, IntoMatchNodeTemplate, KeyOrTemplate, MatchEdgeTemplate, NodeTemplate,
  TypedVariable, Variable, build_execute, build_execute_and_return, build_execute_and_return_one,
  expression::expression_builder, match_edge_template, match_edge_template_for_alias,
  match_node_template,
};

pub(crate) use crate::{Error, FromVariable, Result, expression::Expression, variable::__variable};

pub use crate::create_edges::CreateEdges as _;
pub use crate::create_nodes::CreateNodes as _;