Hi David,
I do merge the file:/// to the file name and then pass it to the query.
I also did try with:
tx.run("""LOAD CSV WITH HEADERS FROM 'file:///test_file.csv' AS row
MERGE (s:Test {Name: row._Name})
SET s.id = row._id"""
But i get the same error: " Couldn't load the external resource at: file:/production/analytics/Temp/test_file.csv"
"And that must exist in the docker container." - I didn't quite get this? I am already setting the import directory as: --volume=/production/analytics/Temp:/var/lib/neo4j/import while running my docker.
Is there somewhere else I need to make any change?