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

Popular posts from this blog

jquery - How do you format the date used in the popover widget title of FullCalendar? -

Bubble Sort Manually a Linked List in Java -

asp.net mvc - SSO between MVCForum and Umbraco7 -