Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
06-08-2020 02:54 AM
i need a brief example to load data into neo4j with apoc using spring boot
06-08-2020 12:41 PM
https://neo4j.com/docs/labs/apoc/current/import/load-csv/
CALL apoc.load.csv('excel.csv') YIELD map AS row
CREATE (r:ImportRow)
SET r = row
More details: How to auto-import csv content into Neo4j
(or were you asking the Neo4j community to write your Spring for you?)
06-08-2020 09:24 PM
Yes, I need spring boot implementation of loading csv file or excel file into neo4j using apoc
06-09-2020 09:57 AM
I hadn't looked at spring boot before, but it looks like they're ridgedly forcing MVC, and making it fairly difficult to directly interact via Cypher commands. If you can figure out how to execute any Cypher command, you just need to put the csv in the right place, then execute the Cypher to import it.
All the sessions of the conference are now available online