While it is not possible in Neo4j Aura to export your data directly to a filename due to lack of access to the file system, using the following syntax it is still possible to do an export to a stream. To do so, change just add "{stream:true}" as an option to apoc.export.csv.all():
CALL apoc.export.csv.all(null, {stream:true})
YIELD file, nodes, relationships, properties, data
RETURN file, nodes, relationships, properties, data
Comments
0 comments
Article is closed for comments.