Please, I have created a projected graph, like this:
CALL gds.graph.create(
'my-native-graph',
'Author',
'CO_AUTHOR'
)
YIELD graphName, nodeCount, relationshipCount, createMillis;
I need to export the projected graph in GraphML format.
Note. I don't...