Interface GeneratedAqlQuery<T>

Derived type representing AQL query objects generated by the AQL helper functions and the AQL template string handler. These objects can be fed back into these helper functions to be inlined or merged in complex queries.

interface GeneratedAqlQuery<T> {
    [type]?: any;
    bindVars: Record<string, any>;
    query: string;
}

Type Parameters

  • T = any

Hierarchy (view full)

Properties

[type]?: any
bindVars: Record<string, any>

An object mapping AQL bind parameter names to their respective values.

Names of parameters representing collections are prefixed with an at-symbol.

query: string

An AQL query string.