UNPKG

@neo4j/cypher-builder

Version:

A programmatic API for building Cypher queries for Neo4j

4 lines (3 loc) 234 B
import { Param } from "../references/Param"; /** Converts an object into an object of Param so it can easily be passed to a pattern. */ export declare function toCypherParams<T>(original: Record<string, T>): Record<string, Param<T>>;