Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
02-01-2023 03:15 AM
I have used
CALL apoc.export.cypher.all(null,{format: "plain", useOptimizations: {type: "UNWIND_BATCH", unwindBatchSize: 20},stream:TRUE
})
YIELD file, batches, source, format, nodes, relationships, properties, time, rows, batchSize
RETURN *
Solved! Go to Solution.
02-01-2023 03:40 AM
I needed to add YIELD like this:
CALL apoc.export.cypher.all(null,{stream:true})
YIELD cypherStatements
Return cypherStatements
02-01-2023 03:39 AM
I got the CYPHER from Aura with this:
CALL apoc.export.cypher.all(null,{stream:true})
Which gives me an entire table. How do I just get the cypherStatements?
02-01-2023 03:40 AM
I needed to add YIELD like this:
CALL apoc.export.cypher.all(null,{stream:true})
YIELD cypherStatements
Return cypherStatements
02-01-2023 04:14 AM
According to the docs, You need to include ‘cypherStatements’ in the ‘yield’ statement. It should have the cypher.
All the sessions of the conference are now available online