I'm trying to execute a csv export using the APOC procedure library, specifically, the procedure CALL apoc.export.csv.query
The procedure runs forever even with a simple query, for example:
CALL apoc.export.csv.query("match (m:Movie) where m.name='Matrix' return m.name","results.csv",{})
The Neo4j version is 3.2.1 and the corresponding APOC version is apoc-3.2.0.3.
Is this a bug or syntax error?