When I execute the query CREATE (h:Human)-[l:LOVES]-(f:Foof) RETURN h, l, f;
, I get the following error:
Error: Query failed: Bidirectional relationship are not supported when creating an edge
If I use MERGE instead of CREATE, the relationship is created:
MERGE (h:Human)-[l:LOVES]-(f:Foof) RETURN h, l, f
Why is this so?