@neo4j/cypher-builder
Version:
A programmatic API for building Cypher queries for Neo4j
13 lines (12 loc) • 486 B
TypeScript
import type { Expr } from "../../types";
import { CypherFunction } from "./CypherFunctions";
/**
* @see {@link https://neo4j.com/docs/cypher-manual/current/functions/spatial/ | Cypher Documentation}
* @group Functions
* @category Spatial
*/
export declare function point(variable: Expr): CypherFunction;
export declare namespace point {
var distance: (lexpr: Expr, rexpr: Expr) => CypherFunction;
var withinBBox: (point: Expr, lexpr: Expr, rexpr: Expr) => CypherFunction;
}