WITH 'https://github.com/mneedham/oreilly-graph-algorithms-learning-course/tree/master/data' AS base
WITH base + "transport-nodes.csv" AS uri
LOAD CSV WITH HEADERS FROM uri AS row
MERGE (place:Place {id:row.id}) SET place.latitude = toFloat(row.latitude),place.longitude = toFloat(row.latitude), place.population = toInteger(row.population)
WITH 'https://github.com/mneedham/oreilly-graph-algorithms-learning-course/tree/master/data' AS base WITH base + "transport-nodes.csv" AS uri LOAD CSV WITH HEADERS FROM uri AS row MERGE (place:Place {id:row.id}) SET place.latitude = toFloat(row.latitude),place.longitude = toFloat(row.latitude), place.population = toInteger(row.population)
Neo.ClientError.Statement.ExternalResourceFailed: Couldn't load the external resource at: https://github.com/mneedham/oreilly-graph-algorithms-learning-course/tree/master/datatransport-nodes.csv I try to load the data i got it from githup but it showed me this message. How i can solve this problem??