我正在尝试在第二个 withinDistance 中使用withinDistance查询的结果。
我有 2 个空间索引,房屋和 POI(兴趣点)。我正在尝试找到符合某些参数的房屋,然后在每个房屋周围找到 POI。
这是我到目前为止所拥有的,但我不知道如何在第二个 withinDistance 查询中传递house.lon和house.lat作为参数
START house=node:Houses('withinDistance:[48.0,5.3,100.0]')
MATCH house ... // ... find Houses which match certain parameters
WITH house
START poi=node:POIs('withinDistance:[house.lon,house.lat,50.0]')
RETURN house.name, count(poi)
额外问题:POI 链接到 POI_Type 节点,如何按类型返回每个 House 周围的 POI 计数?
干杯:)