我正在尝试在包含字符串列表的字段上添加全文索引。例如,一个Strings
节点可能看起来像这样:
{
"strings": ["hello", "world"]
}
我正在使用以下命令添加索引:
CALL apoc.index.addAllNodes("mystrings", {Strings: ["strings"]});
但是,当我尝试使用以下内容对该索引进行搜索时,我总是返回一个空集。
CALL apoc.index.search("mystrings", "hello")