My question is: are two nodes asked, node A and node B, is there a cypher request that removes all relations from node A and binds them instead of node B, so that all nodes that were previously bound to node A are now bound to node B?
I am sure that for such a request there are many use cases, but my use case is to combine several logins on social networks:
Given that I have a member account (member1) using Google as a sign in the provider And I have a separate member account (member2) using facebook as a sign in the provider When member1 tries to connect to the same facebook account that member2 uses as a sign in the provider AND member1 asks for a merge (account merge) And member2 confirms the merge Then the accounts for member1 and member2 will be merged And one member will use both google and facebook as a signin provider.
What is a cypher request for this?
source share