In Neo4j in order to simulate the SERIALIZABLE
transaction isolation level I need to explicitly set a dummy property, for example:
SET n._lock_ = true
But how to properly release the lock, do I need to SET n._lock_ = false
or to completely remove it via REMOVE n._lock_
query ?