UNPKG

@neo4j/cypher-builder

Version:

A programmatic API for building Cypher queries for Neo4j

9 lines (8 loc) 292 B
import type { CypherEnvironment } from "../../Environment"; import type { SetParam } from "./Set"; import { SetClause } from "./Set"; export type OnCreateParam = SetParam; export declare class OnCreate extends SetClause { /** @internal */ getCypher(env: CypherEnvironment): string; }