-
Notifications
You must be signed in to change notification settings - Fork 617
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Relationships not stored/deleted on update of node (Release >=7.1.0) #2728
Comments
Thanks for reporting this. Seems to be a problem but needs further investigation. |
Make sure we ignore invalid dialect config (i.e. we actually have neo4j 5, but are on 4 dialect in a crucial mapping path.
Make sure we ignore invalid dialect config (i.e. we actually have neo4j 5, but are on 4 dialect in a crucial mapping path.
Thanks again @rainerfriesen for reporting this. |
Thanks from my side as well, @rainerfriesen for the good reports! |
Accidentally branched away from the release version for GH-2728.
After updating to Spring Boot Starter 3.1.0 (--> Spring Boot Starter Neo4j 7.1.0) the save or update of #nodes that have relationships leads to a deletion of existing relationships on the updated node and new relationships ##not being saved. Prior to 7.1.0 that was working as expected.
Expected Result:
The TestEntity1 is stored with a relation to TestEntity2 (stored as well)
Actual Result:
TestEntity1 and TestEntity2 are stored on the DB but no relation is created. (Previous existing relations would have been removed, not shown in test)
Test-setup to reproduce:
Example Entities:
Repository:
Test (using TestContainers):
The text was updated successfully, but these errors were encountered: