apoc.cypher.runFile limited to 100 statements?

Hi,

is there some limitations in the number of statements that can be run using CALL apoc.cypher.runFile() ?

I notice that in my case, if my file contains 99 lines (each statement on one line ending with a semi-colon), it works fine. But with 100 or more, it does not work anymore at all.

I use Neo4j Desktop 1.2.4, Neo4j Browser, the database version is 3.5.14 Enterprise.

any idea ?

thanks,
Benoît

Can you try to use a slight variant of it:

CALL apoc.cypher.runFile(<myfile>, {statistics:false})

and see if this does the trick?

1 Like

oh YES , fixes it :smile: