You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 22, 2020. It is now read-only.
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??
The text was updated successfully, but these errors were encountered: