Hi, I am pretty new to Neo4j and the Graph Data Science Library. And I want to export the whole graph from my neo4j graph into RDF format. I studied the n10s documentation and tried to use
call n10s.rdf.export.cypher("match(n) return n",{stream:True})
and
call n10s.rdf.export.cypher("MATCH (n)-[r]-(m) RETURN n,r, m")
But none of them work, the query results are empty.
But when I execute match(n) return n, the result is
So how can I export this graph in RDF format?
Thanks!