Hello everyone again!
I want to export one relation that I have created to a csv file (unfortunatelly everyone at my office is more familiar to Excel than to Neo4j).
I have already added to my neo4j.conf file the cod:
apoc.export.file.enabled=true
I also know how to export, and that the export.csv file is located in the import folder (this took me some time
).
The point is that I have only been able to export the whole table, not my relationship defined.
This is my relationship:
MATCH (d:asia)<-[:son]-(p:person)
WITH p, count(d) as brothers
WHERE numResidents >=2
MATCH (d:asia)<-[:son]-(p:person)
RETURN d, p
But I do not know where to put it in the clause:
CALL apoc.export.csv.all("familyInfo.csv", {})
Any help will be more than welcome!!!!!