How to export a sub Graph out of a main graph and create a new graph

Hi all, I'm trying to export a sub graph out from my main graph and then load the sub graph into a new database. What's the best way to do it? I've the query for my sub graph.

MATCH (mainField:Field {fieldID:'F_0271BC14'})<-[:PART_OF_FIELD*..]-(subField:Field)
WITH subField, mainField
MATCH (Institute:Institute)<-[r:WORKED_IN]-(Author:Author)<-[:WRITTEN_BY]-(paperINsub:Paper)-[:PAPER_IN_FIELD]->(subField),
(Journal:Journal)<-[:PUBLISHED_ON]-(paperINsub)-[:PUBLISHED_ON]->(Conference:Conference),
(paperINsub)-[:CITED]-(paperINsub)
RETURN Institute,Author,paperINsub,subField,Journal,Conference

I want the label relation and nodes to be the same and export to a new graph. Thanks

Take a look at the export procedures in APOC.

1 Like

see

https://neo4j-contrib.github.io/neo4j-apoc-procedures/#export-cypher

THANKS. Managed to do it with apoc.export.graphml.data

1 Like