cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

aishwariyagupta
Node
since ‎02-07-2022
‎06-01-2022

User Statistics

  • 7 Posts
  • 0 Solutions
  • 1 Kudos given
  • 0 Kudos received

User Activity

I have the following model: LOAD CSV WITH HEADERS FROM "file:///restaurant_data.csv" AS data MERGE(n1:Customer{name:data.Name, latitude:toFloat(data.Latitude),longitude:toFloat(data.Longitude)}) MERGE(n3:Restaurant{restaurantname:data.Restaurant, r...
I am trying to work on neo4j for the first time. I have written the following: LOAD CSV WITH HEADERS FROM "file:///restaurant_data.csv" AS data MERGE(n1:Customer{Name:data.Name, Latitude:toFloat(data.Latitude),Longitude:toFloat(data.Longitude)}) MERG...
Kudos given to