範囲検索に自動インデックスを使用する方法があるかどうか知りたいです。次のようなクエリを実行すると
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"
しかし、それはちょうどまたはそのようなものが必要なようです。
何をすればいいですか?