Somehow I'm lost to create the relation between my nodes I have 3 CSV files trying to connect books to person s and the academies.
I have read and watched a lot's of videos and posts about creating and merging the relations between nodes but I'm still novel to creating them,
I have tried to import my data with ETL tool also with other ways import CSV with headers and so on .. and create the relations: but what I mean is to connect them by Ids and show the info's
MATCH (p:Person),(b:Book)
MERGE (b)-[:WRITE_BY]->(p)
MATCH (p:Person),(a:Academy)
MERGE (p)-[:MEMBER]->(a)
MATCH (b:Book),(a:Academy)
...
It would be great if anyone could help me specifically with my data to create the relations
we should also avoid creating NULL nodes, we have {
itacitemperson.id to itacitembook.ArtistIds,
itacitemacademy.id to itacitembook.AcademyIds
}
Thanks in advance