@Relationship.cascadeUpdates
is ignored for nested Relationships.
#2943
Labels
status: waiting-for-triage
An issue we've not yet triaged
Saving a Node
N
that has a relationship to a parentP
which in turn has a relationship to a childC
causes the relationship betweenP
andC
to be updated, even though the relationship betweenN
andP
is set to not cascade updates throughcascadeUpdates=false
.This means it is impossible to save a node without loading the complete node graph. The weird thing is that the child nodes don't need any populated properties (except the ID), as the cascading update correctly ignores those but not their relationships.
The expected behaviour would be that the relationships of the child nodes also get ignored, when the cascading updates are turned off.
I created a minimal example here.
The text was updated successfully, but these errors were encountered: