dart_arango_min library

Classes

ArangoDBClient
BindNameValuePair
BindVar
Simple pair of name-value to bind they to query as variable. Sample:
BindVarIfThen
Pair of variable name-value to bind they into query with condition. Sample:
BindVarIfThenElse
Pair of variable name-value to bind they to query with condition. Sample:
Line
Simple text line for injecting it into the query, constructed by Query(). Sample:
LineIfThen
Line of query text with condition. If bool cond is true, then String when_true will pasted into query. Sample:
LineIfThenElse
Line of query text with condition. If bool cond is true, then String when_true will pasted into query. Else String when_false willpasted into query. Sample:
Query
Constructor for constructing query as object from understandable arguments with condition support. Query object do not call database. Query object can be converting to Map via toMap() method and used as argument to query() method of database client for sending. For debug purpose query object can be printed as String, because it has toString() method. Sample:
QueryTextFragment
QueryWithClient