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



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

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

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

value: .*MysDesired.*

感谢

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

参见http://docs.neo4j.org/chunked/stable/query-where.html#where-正则表达式

相关内容

最新更新