Ah, okay. What about this: I have a node with N a keyword property: keyword = "cars". Is there a way to use create unique such that I can connect other nodes to this node if it exists?
So:
Bob----has_keyword---->(N {keyword: "planes"}).
Now, if other people have the same keyword, I want them to be able to connect to the same keyword node that bob is connected to, rather than creating a new duplicate keyword node. Something like:
start n = node(5) create unique n-[:INTERESTED_IN]->(kwn {keyword: "planes"});
This query creates a new node though. So it is possible with create unique, or is there an alternate query that I can use?
Thanks,
Rohit