I have a network of nodes which represent People which are connected by relationships (Emails).
The Receiver of the Email is m.slug
Based on: ()-[r]-(m)
I wish to split the property (in this case "Sender" / m.slug ie [email protected])and create a new node "Google.com" AS Company (i.e so I now have a set of Company nodes created from the existing information).
I want to then link Google (the company) to my Person Node ([email protected]).
--
How would you approach this, without creating multiple duplicate Company nodes? (i.e for [email protected] & [email protected] should be connected to the same Google.com Company Node).