Just few questions since I can not find any issue about them. The following is my query that can work in Neo4j server
CALL apoc.periodic.iterate("CALL apoc.load.csv('file:///import/data') YIELD map AS row RETURN row",
'CREATE (computer:Computer{computer:coalesce(row.Computer,"No Computer")})',
{batchSize:10000, iterateList:true, parallel:true})
Can this query work in Python, i.e., can apoc.periodic.iterate and apoc.load.csv both work in Python?
Moreover, if I import my data into Python (for example, panda-dataframe), can apoc.periodic.iterate work in Python without the help of apoc.load.csv?
Appreciate.