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.