请问这样使用apoc查询数组中是否存在一个元素A
建立了apoc全文索引
type | name | config |
±----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| “NODE” | “name_index” | {keysForLabel:Entity -> “name”, autoUpdate -> “true”, provider -> “lucene”, to_lower_case -> “true”, labels -> “Entity”, type -> “fulltext”}
此时,name是一个数组类型时 name:[‘刘德华’,‘刘福荣’,‘andy lau’],怎样使用name_index查询name中存在一个元素叫"刘福荣"的实体呢?
查询过Google和百度只找到了通配符和模糊查找的方式,但一直没有找到一个元素in一个数组的查询方式。
请问这样的语句该怎么写呢?