How can I use a for loop to import multiple data files in Neo4j? -
suppose have list of paths 5 csv files import, have same structure. how can this?
for path in paths: load csv headers path row row create (n:person { name : name}) ;
this not directly possible cypher. use preprocessing tool either aggregate csv files 1 or call load csv
each of files.
for preprocessing csvkit choice.
Comments
Post a Comment