js-node-arango
Version:
NodeJS ArangoDB Provider
16 lines (15 loc) • 593 B
TypeScript
import { ArangoEdgeQueryOptions } from '../types/arango-query-options.interface';
import { ArangoBaseQueryBuilder } from './base-query-builder';
export declare class ArangoEdgeQueryBuilder extends ArangoBaseQueryBuilder {
protected options: ArangoEdgeQueryOptions;
protected doc: string;
protected returnClause: string;
private edges;
private rootDoc;
private startingVertexId;
constructor(options: ArangoEdgeQueryOptions);
setRootDocSelector(doc: string): this;
protected buildSelector(): void;
private buildEdges;
private buildStartingVertexId;
}