Hi everybody!
I'm trying to create a Node A, and if there are b's related to a's, it should create those connections that already exist among other a's
This is what i got so far
CREATE (a:A)
WITH a
MATCH (b:B)-[:AVAILABLE]->(:A)
CREATE (a)<-[:AVAILAB...