I have a .cypher file that I want to run using jdbcOperations like this:
jdbcOperations.update("CALL apoc.cypher.runFile(\""+{CYPHER FILE HERE}+"\")");
But,
In that cypher file I have another CALL
CALL apoc.load.json({PATH TO JSON FILE HERE}) YIELD value AS item
I want that JSON File Path to be dynamic, to pass the path to it as a variable , but I have not succeed with any of my tries.
Help ?