使用neo4j,如何在所有节点中搜索与property.value正则表达式匹配的节点

时间:2013-07-29 08:27:18

标签: neo4j cypher

neo4j最新更新也使用REST API或WEB-ADMIN

搜索pattern.matches(property name)pattern.matches(property value)的所有节点的最佳方法是什么?

例如,查找与属性匹配的所有节点:

value: .*My\sDesired.*

由于

1 个答案:

答案 0 :(得分:1)

start n=node(*) where n.property =~ value return n

请参阅http://docs.neo4j.org/chunked/stable/query-where.html#where-regular-expressions