neo4j-contrib / neo4j-graph-algorithms

Efficient Graph Algorithms for Neo4j
https://github.com/neo4j/graph-data-science/
GNU General Public License v3.0
767 stars 196 forks source link

load data as like #938

Open alsa15 opened 4 years ago

alsa15 commented 4 years ago

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??