【发布时间】:2013-05-02 01:21:48
【问题描述】:
我想知道是否有任何方法可以使用自动索引进行范围查找。如果我查询类似
START age=node:node_auto_index(age<20 and age>10)
RETURN age;
返回
Exception in thread "main" string literal or parameter expected.
我也尝试过类似的东西
START age=node:node_auto_index(age = range(10,20))
RETURN age;
但它看起来只需要 age = "15" 或类似的东西。
有什么想法吗?
【问题讨论】: