Neo4j - 1:N relationship without a Set on the start node.
I'd like to have node A - that has a 1:N relationship to nodes B - but I do not want to put a Set<B> on node A (there will be unbounded Bs). I'd like to create Node A and Node Bs separately - and then create the link - and query (Page) for node Bs that are related to to Node A. From the docs - it appears the way to do this is to create a RelationshipEntity. Which I can do. But - if i DID use a Set<B> on node A - these RelationshipEntities would not be needed/created - so is there a way to make a link without using RelationshipEntities? Thanks.
M