Module surreal_simple_querybuilder::querybuilder
source · [−]Expand description
Contains the query builder for simplifying the building of Surreal QL queries. Particularely useful when composing variables and conditional queries
Structs
Enums
Segment of a query held by the QueryBuilder until the final query is built.
Traits
Implementing the trait allows
Self
to be converted into a QueryBuilderSegment
when needed. Allows one to pass Self
to all of the QueryBuilder’s methods.This trait allows you to easily and safely convert a type into a series of
statements. One such case being a series of
field = $field
statements.