I created a neo4j causal cluster 4.0.4 on GCP.
While I am trying to load the csv with
<LOAD CSV WITH HEADERS FROM 'https://neo4j.com/docs/cypher-manual/4.0/csv/artists-with-headers.csv' AS line
CREATE (:Artist { name: line.Name, year: toInteger(line.Year)})>
I get a Neo.ClientError.Statement.ExternalResourceFailed error
However, I am able to load the following csv
<LOAD CSV FROM "http://data.neo4j.com/examples/person.csv" AS line
MERGE (n:Person {id: toInteger(line[0])})
SET n.name = line[1]
RETURN n>
I dont encounter any such issues in loading csv on a 3.5 causal cluster. I am sure its a config setting but am unable to figure out as I seem to have looked at the areas that are generally mentioned in stackoverflow