i have a little problem with neo4j and i don't know how to resolve it.
I use the sintax:
create(p1)-[:wow]->(p2)
and it works fine, this actually make a relationship between node p1
and node p2
, but what if I want to make a relatioship between the first one and the third?
When I try with create(p1)-[:wow]->(p3)
it create something like 4 more nodes that I don't want. What can I do?
for example in this image how can i make a relation ship between node 1 and 3 without make any other nodes?
Thank you