Hello,
I am newbie with neo4j. I can load csv with cypher-shell.bat in powershell or load csv with neo4j web UI successful. I want to load csv that can be run with windows scheduler. Can I run load csv with .bat and windows scheduler or does someone have suggestions? Thank you.
I load csv with powershell like below:
\bin> .\cypher-shell.bat -a bolt://localhost:7687 -u neo4j -p password
neo4j>:begin
neo4j#
LOAD CAV WITH HEADERS FROM 'file://test.csv' as line
MERGE (n:n{n:line.n})
MERGE (m:m{m:line.m})
MERGE (n) -[r:TO{r:line.r}]->(m)
;