Spatial query in Neo4j

Viewed 57

I’m trying to run the example code below in Neo4j Desktop but keep getting the error - Unknown function 'point.withinBBox'

WITH point({x: 0, y: 0, crs: 'cartesian'}) AS lowerLeft, point({x: 10, y: 10, crs: 'cartesian'}) AS upperRight
RETURN point.withinBBox(point({x: 5, y: 5, crs: 'cartesian'}), lowerLeft, upperRight) AS result

Is the function not available in the Desktop version?

0 Answers
Related