@neo4j/cypher-builder
Version:
A programmatic API for building Cypher queries for Neo4j
18 lines (17 loc) • 1.05 kB
TypeScript
import type { Clause } from "../../../clauses/Clause";
import { CypherFunction } from "../../../expressions/functions/CypherFunctions";
import { MapExpr } from "../../../expressions/map/MapExpr";
import type { Variable } from "../../../references/Variable";
import type { Expr } from "../../../types";
/**
* @group Functions
* @deprecated apoc methods will no longer be supported in Cypher Builder version 3
* @see [Apoc Documentation](https://neo4j.com/docs/apoc/current/overview/apoc.cypher/apoc.cypher.runFirstColumnMany/)
*/
export declare function runFirstColumnMany(clause: Clause | string, params?: Variable[] | MapExpr | Record<string, Expr>): CypherFunction;
/**
* @group Functions
* @deprecated apoc methods will no longer be supported in Cypher Builder version 3
* @see [Apoc Documentation](https://neo4j.com/docs/apoc/current/overview/apoc.cypher/apoc.cypher.runFirstColumnSingle/)
*/
export declare function runFirstColumnSingle(clause: Clause | string, params?: Variable[] | MapExpr | Record<string, Expr>): CypherFunction;