Named graph import

Hello,

I have a graph that have 50 millon nodes , and I am creating a new named graph from that have like 10 million nodes. And the code I am using is

CALL gds.beta.graph.export.csv('<graph_name>', { exportName: '<directory_name>' })

Now, I want to import it to another database as in-memory graph to run some algorithms on it.

Is this possible ?

Thank you so much.

You can also export into a new graph directly I think.

https://neo4j.com/docs/graph-data-science/current/graph-catalog-export-ops/#catalog-graph-export-database

and then load a new in-memory graph from that.