neo4-js
Version:
Neo4j graphdb object graph mapper for javascript
10 lines (9 loc) • 333 B
TypeScript
import { CharGenerator } from "./CharGenerator";
export declare function prepareWhere(properties: any, variables: string | string[], cg?: CharGenerator): {
where: string | string[];
flatProps: any;
};
export declare function prepareSet(properties: any, variables: string | string[]): {
str: string;
newProps: any;
};