How to use apoc.load.csv in conjunction with apoc.create.node
问题 I need to import a CSV file and create a node from each record. I am using APOC because supposedly I can use a column in the CSV file to define each node type as the nodes are created. This doesn't work: CALL apoc.load.csv('FILE:///C:/Temp/Test/Test/Neo4jTest/import/Neo4j_AttributeProvenance.csv',{sep:","}) YIELD map CALL apoc.create.node(['map.AttributeName'], {key:['map.NodeID']}) return count(*) This is the error: Procedure call inside a query does not support naming results implicitly