Hi, I'm building a music advice system with Spring using neo4j.
// User Model
@Relationship (type = "LIKE", direction = OUTGOING)
private List likedArtists = new ArrayList ();
public void likeArtist (Artist artist) {
likedArtists.add (artist);
}
Whe...