Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为了防止我的路径多次包含同一个节点,我希望能够使用 .Net Neo4jClient 或在数据库配置文件之一(最后一个我听说,不可能)。
如果可以做到这一点,我几乎可以肯定它也会解决这个问题:
Neo4j 中的密码查询返回“未定义”
谢谢你的帮助!
布伦特
布伦特,
您可以使用 Cypher 的CREATE UNIQUE子句来创建关系:
CREATE UNIQUE
http://docs.neo4j.org/chunked/1.9.M05/query-create-unique.html#create-unique-create-relationship-if-it-is-missing
如果它已经存在,它不会做任何事情。
——泰坦