Neo4j 2.2 spatial withindistance label issue -
just started playing around neo4j 2.2. awesome work! unfortunately ran in problem using spatial-0.14-neo4j-2.2.0-m02 :( in application have query fetches nearest users:
start n=node:geom('withindistance:[42.0,1.0, 1000.0]') n:user return n;
after updating latest version above query not seem care label anymore , nodes has lat/lon , added spatial layer back. else have experienced problem?
your observation seems correct, reproduce it. seems where
directly following spatial index query not honored.
however there easy workaround introducing with
:
start n=node:geom('withindistance:[42.0,1.0, 1000.0]') n n:user return n;
please check if works. please file bug report @ https://github.com/neo4j/neo4j/issues/new.
Comments
Post a Comment