Hi,
Im using neo4j spring And I was wondering on how to efficiently update an existing node with a new relationship.
Currently Im doing the following:
var mydto = repository.findById(theid);
var newrelationship = new SomeRelationship();
newrelationsh...