Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
10-21-2021 03:05 AM
Hello, I'm trying to export some data from my Neo4J db 3.3.9 to a CSV file and I use this:
match (c:Context{name:'networkScience'})<-[rels:IN]-(s:Statement) WITH collect(distinct c) AS co, collect(distinct s) AS st, collect(distinct rels) as rrels CALL apoc.export.csv.data(co+st,rrels,"s-m.csv", {}) RETURN st;
But I get an error Procedure call inside a query does not support naming results implicitly (name explicitly using YIELD
instead) (line 2, column 158 (offset: 158))
How to export the data correctly?
Thanks!
All the sessions of the conference are now available online