cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

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

2 REPLIES 2

Can you try to use a slight variant of it:

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

and see if this does the trick?

oh YES , fixes it