0

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

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

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

value: .*My\sDesired.*

谢谢

4

1 回答 1

1

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

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

于 2013-07-29T09:33:41.947 回答