Finally, I discovered that the issue with persisting relationship properties using @RelationshipProperty annotated class is due to the implicit conversion between long and Long. Changing @RelationshipId private long id; to @RelationshipId private Lon...
Hi, I have the same question but the answer is not very clear to me. How to use the relationship defining entities (nodes) to load, modify and persist relationship properties exactly? The documentation mentions @RelationshipProperties is the way but...