@neo4j/cypher-builder
Version:
A programmatic API for building Cypher queries for Neo4j
15 lines (14 loc) • 453 B
TypeScript
import type { CypherEnvironment } from "../Environment";
import { Clause } from "./Clause";
import { WithNext } from "./mixins/clauses/WithNext";
export interface Finish extends WithNext {
}
/**
* @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(env: CypherEnvironment): string;
}