I have executed following query to load CSV file and store into Neo4j graph. I framed the query using APOC stored procedures in Neo4j. But, it is showing an error. The query is as:
CALL apoc.load.csv("file:///Product_CSV.csv",{sep:","}) YIELD al
CALL apoc.create.node(['Product'], ProductTitle:al.Product_Title,ProductType:al.Product_type}) YIELD node
RETURN count(*);
The error is:
Unknown procedure output:
al
(line 1, column 71 (offset: 70)) "CALL apoc.load.csv("file:///Product_CSV.csv",{sep:","}) YIELD al CALL
poc.create.node(['Product'], ProductTitle:al.Product_Title,ProductType:al.Product_type}) YIELD node RETURN count(*);"
Anybody can help me out of this?