Closed RosarioB closed 1 year ago
Thanks for reporting this. The good thing is, that this is a known bug in SDN 7.1.0 that got already fixed in https://github.com/spring-projects/spring-data-neo4j/issues/2728 If you want, you could try the 7.1.1-SNAPSHOT or wait until a patch got released. Closing this now, but feel free to comment if it does not solve your problem.
Hello, I have experienced an issue when trying to create a relationship with Spring version 3.0.1.
These are the entities:
This is the controller (the class is called MovieController) method I am calling:
I have uploaded the code here: https://github.com/RosarioB/spring-boot-crud-rest-api-neo4j/tree/basic_crud
This is a body example of a POST request at: http://localhost:8080/api/movies
And this is the response:
On the database only the 2 nodes (one Person and one Movie) got created but not the relationship. I would have expected the relationship ACTED_IN to be created too.
By downgrading to Spring version 3.0.6 the relationship got created.