如何将手动APOC索引添加到包含字符串列表的属性中

时间:2018-09-25 19:27:15

标签: neo4j neo4j-apoc

我正在尝试在包含字符串列表的字段上添加全文索引。例如,一个Strings节点可能看起来像这样:

{
    "strings": ["hello", "world"]
}

我正在使用以下命令添加索引:

CALL apoc.index.addAllNodes("mystrings", {Strings: ["strings"]});

但是,当我尝试使用以下内容对该索引进行搜索时,我总是返回一个空集。

CALL apoc.index.search("mystrings", "hello")

0 个答案:

没有答案