I'd like to implement Cypher query and using APOC functions remove all of the existing triggers:
I'm trying the following query:
CALL apoc.trigger.list() yield name
CALL apoc.trigger.remove(name) yield name, installed
but it fails with the following error:
Neo.ClientError.Statement.SyntaxError: Query cannot conclude with CALL (must be RETURN or an update clause) (line 1, column 37 (offset: 36)) "CALL apoc.trigger.list() yield name CALL apoc.trigger.remove(name) yield name, installed" ^
How to properly implement this query ?