Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
09-17-2022 08:51 AM
I've created Node from csv files, and I have a relationship table with headers [':START_ID (Actor)', ':EDN_ID (Musical)']. But I'm struggling to create a relationship. Not sure how I can specify the start node and end node using the relationship table. Thanks a lot.
#py2neo
09-17-2022 09:07 AM
Try something like the following:
match(n:Actor{id: START_ID})
match(m:Musical{id: EDN_ID})
merge(n)-[:RELATIONSHIP_TYPE]->(m)
10-02-2022 08:39 AM
Thanks for your reply. I've solved the problem by using matcher to get the nodes based on the property in relationship table. Thanks a lot though!
All the sessions of the conference are now available online