Hi,
I am using Neo4j5.3 on my desktop. I have a large CSV for which I wrote the LOAD CSV command and was able to ingest from a smaller file (made from top 50 rows). I tried to use
:AUTO PERIODIC COMMIT 500
LOAD CSV ... and realized that PERIODIC COMMIT is deprecated and got the following error: The PERIODIC COMMIT query hint is no longer supported. Please use CALL { ... } IN TRANSACTIONS instead. (line 1, column 8 (offset: 7))
" USING PERIODIC COMMIT 500"
^
Are there examples of how CALL { ... } IN TRANSACTIONS can be used with LOAD CSV? Thanks!