Using Neo4j 4.4.11
(community edition), I'm trying to delete a certain type of relationships from my graph with cypher-shell
:
MATCH ()-[r:MYRELATIONSHIPLABEL]->() CALL { WITH r DETACH DELETE r } IN TRANSACTIONS OF 10000 ROWS;
But I always end up with this error:
Connection read timed out due to it taking longer than the server-supplied timeout value via configuration hint.
Is it possible to increase the read timeout directly in cypher-shell
without changing the server settings? (I did not find anything in the docs.)