How to import CSV from apoc.export.csv to another Neo4j Database

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.import.runFile to the database. And I do not want to specify the labels such as in apoc.import.csv because all of them are already specified in the CSV.

Many thanks

Maybe it can be done with something like LOAD CSV WITH HEADERS FROM 'file:///thefile.csv' AS row RETURN *

But it did'nt create anything in my database