Hi,
I am using python to populate and drop data on neo4j with neo4j-python.
While dropping the nodes, I'm running a query like:
call apoc.periodic.iterate("MATCH (n {data_source:'APAC'})
return n", "DETACH DELETE n", {batchSize:10000})
yield batches...