@neo4j/cypher-builder
Version:
A programmatic API for building Cypher queries for Neo4j
18 lines (17 loc) • 742 B
TypeScript
import type { Expr } from "../../types";
import { CypherFunction } from "./CypherFunctions";
/**
* @see {@link https://neo4j.com/docs/cypher-manual/current/functions/graph/#functions-graph-names | Cypher Documentation}
* @group Functions
*/
export declare function names(): CypherFunction;
/**
* @see {@link https://neo4j.com/docs/cypher-manual/current/functions/graph/#functions-graph-propertiesByName | Cypher Documentation}
* @group Functions
*/
export declare function propertiesByName(name: Expr): CypherFunction;
/**
* @see {@link https://neo4j.com/docs/cypher-manual/current/functions/graph/#functions-graph-byname | Cypher Documentation}
* @group Functions
*/
export declare function byName(graphName: Expr): CypherFunction;