There is a table movie and tag a csv-schnick, with information on relationships. Here is a query I wrote but it's not workingLOAD CSV WITH HEADERS FROM "file:///csv/movie-tags.csv" AS row
Match (m:Movies),(t:Tags)
Where m.id = row.movieID And t.id = row.tagID
Create (m)-[:Relation{wt:row.tagWeight}]->(t)