cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Py2neo and without RETURN clause in graph.run()

Is it mandatory to use a RETURN clause in a LOAD CSV Cypher query while executing with graph.run()
Is there any alternative function similar to graph.run() without using the RETURN clause and didn't find in py2neo tutorial?
Thanks!

1 REPLY 1

You have to RETURN something, even if it is a hardcoded string , like RETURN "done" as x.