Best Practice for Replacement of USING PERIODIC COMMIT to CALL {} IN TRANSACTIONS

Hi @omerule ,

When running with Neo4j Browser, prepend the query with :auto to instruct Browser so submit the query as an implicit (also known as auto-commit) transaction.

For example:

:auto LOAD CSV WITH HEADERS from "example.csv" AS line
CALL {
    with line
    CREATE (n:Example)
    SET n = line
} IN TRANSACTIONS OF 10 ROWS

You can read more about explicit vs implicit transactions here Transactions - Cypher Manual

Best,
ABK