I want to export data using the CALL apoc.export.csv.all function in Neo4j.
When using
"""CALL apoc.export.csv.all("export_by_jupter.csv", {});"""
the data is saved in C:\neo4j-community-4.4.20\export_by_jupter.csv.
However, when I try to save the data in csv_file=C:\Users\A\Downloads\output.csv using
f"""CALL apoc.export.csv.all('{csv_file}', {{stream:true}}) yield data;"""
it doesn't work.
Could you please help me understand why?