0
votes

I have installed neo4j and started with neo4jshell using neo4jShell start command.I have create a graph database and have to load data using .xls or .csv file format files. I am using the below command in the neo4jshell,

LOAD CSV WITH HEADERS FROM "file:RT_RISK.csv" AS ROW 
CREATE (:Rt_Risk{risk_id:row.Risk_id,owner:row.owner,
   risk_category: row.Risk_Category, description:row.Description} );"

But getting the below error "QueryExecutionKernelException: row not defined". Kindly Suggest.

1

1 Answers

0
votes

You're defining an capital variable in the first line AS ROW but use it in lower case letters in l. 2 and 3 row.

Identifiers are case sensitive.