UNPKG

@neo4j/cypher-builder

Version:

A programmatic API for building Cypher queries for Neo4j

11 lines (10 loc) 275 B
import { Clause } from "./Clause"; /** * @see {@link https://neo4j.com/docs/cypher-manual/current/clauses/finish/ | Cypher Documentation} * @group Clauses * @since Neo4j 5.19 */ export declare class Finish extends Clause { /** @internal */ getCypher(): string; }