Hi,
I have exported my Neo4j database to a CSV with the following:
<
CALL apoc.export.csv.all("movies.csv", {})
/>
And I want to import this CSV file to another Neo4j database. How do I do it?
I'm not interested in importing a Cypher file with apoc....