@neo4j/cypher-builder
Version:
A programmatic API for building Cypher queries for Neo4j
15 lines (14 loc) • 557 B
TypeScript
import type { PathVariable } from "../../references/Path";
import { CypherFunction } from "./CypherFunctions";
/**
* @see {@link https://neo4j.com/docs/cypher-cheat-sheet/current/#_path_functions | Cypher Documentation}
* @group Functions
* @category Path
*/
export declare function nodes(path: PathVariable): CypherFunction;
/**
* @see {@link https://neo4j.com/docs/cypher-cheat-sheet/current/#_path_functions | Cypher Documentation}
* @group Functions
* @category Path
*/
export declare function relationships(path: PathVariable): CypherFunction;