I want to connect two nodes without specifying the connection type but It doesn't seem to be possible. Why must relationships have a type? I tried the following:
(n)->(p)
(n)-->(p)
(n)-[]->(p)
(n)-[]-(p)
(n)-[c]->(p)
(n)-[:DEFAULT]->(p) // this works
My current approach is sort of described here, I have a DEFAULT
connection type and when I know the real type, I change it by deleting the old one and adding the new one.