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)