load-csv Questions
5
Solved
I’m trying to use LOAD CSV to create nodes with the labels being set to values from the CSV. Is that possible? I’m trying something like:
LOAD CSV WITH HEADERS FROM 'file:///testfile.csv' AS line
...
2
Solved
load csv with headers from 'file:///C:/Users/user/Desktop/Neo4J'
as row
Create (:State_Code {state_cd:row.st_cd})
I have tried this code and it is throwing an error as:
Neo.ClientError.Statem...
4
Solved
is there a way to tell the neo4j the type of the value when importing?
for example, does the neo4j knows if "2015-0104T10:33:44" is a date or string?
thanks!
1
© 2022 - 2024 — McMap. All rights reserved.