Interface AqlQuery<T>

Generic AQL query object consisting of an AQL query string and its bind parameters.

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

Type Parameters

  • T = any

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.