Naming convention for bidirectional relationships in Neo4j (using Spring Data)
问题 I need some advice to give name to relationships. Plus, I'm not sure on how I have to annotate my domain entities with spring data. Most of examples that I've seen are unidirectional and the name chosen are pretty straightforward. Supose the following example: @NodeEntity public class Person { @Indexed private String name; @RelatedTo(type="OWNS", direction=Direction.OUTGOING) private Set<Car> cars; } The relationship name seems ok, no problem. Now suppose that I want to make this relationship