Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
01-12-2021 09:10 PM
Please, I have created a projected graph, like this:
I need to export the projected graph in GraphML format.
Note. I don't need to export the whole graph, just "my-native-graph"
Thank you,
01-13-2021 03:43 AM
You can export a projected graph using apoc.export.graphml
. See Export to GraphML - APOC Documentation
WITH "MATCH path = (a1)-[:CO_AUTHOR]->(a2)
RETURN path" AS query
CALL apoc.export.graphml.query(query, null, {stream: true})
YIELD file, nodes, relationships, properties, data
RETURN file, nodes, relationships, properties, data;
01-13-2021 10:08 AM
Hello. mark. Thank you. All good.
All the sessions of the conference are now available online