I ran a query to load a csv that I terminated since it was taking too long.
Is there a way to tell how many rows of the csv were imported? And then restart the import from that location?
Below is the start of my query
USING PERIODIC COMMIT 10000
LOAD CSV WITH HEADERS FROM "file:///FILENAME.csv" AS row
assuming its being imported linearly, one way I have done this is by adding a row number into the source CSV. Then you can query by row number in neo4j side to tell how far it got.