UNPKG

@neo4j/cypher-builder

Version:

A programmatic API for building Cypher queries for Neo4j

6 lines (5 loc) 391 B
import type { Expr } from ".."; import type { CypherEnvironment } from "../Environment"; import { LabelExpr } from "../expressions/labels/label-expressions"; export declare function labelsToString(labels: string | Array<string | Expr> | LabelExpr | Expr, env: CypherEnvironment): string; export declare function typeToString(type: string | LabelExpr | Expr, env: CypherEnvironment): string;