Hello
I run the following command in neo4j using Cypher:
*MATCH (a:User), (b:User)*
*WHERE a.id = 1 AND b.id = 2*
*merge (a)-[r:FOLLOW]->(b) ON CREATE SET a.follow = a.follow+1, b.followed 
= b.followed+1*
*RETURN r*
Is it possible that the counter follow or followed is not updated? 
I mean partial update. 
Do I need to resort on such a query to transactions that would avoid a 
partial update?

-- 
You received this message because you are subscribed to the Google Groups 
"Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to neo4j+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to