Pregunta

I was wondering why such a Cypher statement was currently not possible with the latest milestone:

CREATE UNIQUE (n:Person { name : 'Andres' , title : 'Developer' })

Drop UNIQUE and it will just work. Any reason?

¿Fue útil?

Solución

You should try the MERGE keyword with neo4j 2.0. The CREATE UNIQUE will be replaced by that. If no matching node exists a new one will be created. Otherwise the already existing one is used. Please have a look at http://blog.neo4j.org/2013/05/new-milestone-release-neo4j-200-m03.html

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top