this being the content of my "taxonomy.CSV" file:
Level1,Level2,Tree Path,Id,Code,Description,Long Description,Context,Type,Active,Code Valid from,Node Valid from,Node Valid to
1,1,(Root Code),31102727,Zone,Zone,,TEST,Taxonomy,A,31/01/2020,,
2,2,31085110,31085110,CAI,Asia,,TEST,Zone,A,4/8/2017,,
by running
CALL apoc.load.csv('taxonomy.csv') yield map return map,map['Id'],map['Tree Path'],map['Level1'],map['Level2'] limit 5
I cannot access the values on the first column - they are always null.
I've tried renaming the column -> same (=null).
I've duplicated the column, initially called "Level" and new it's Level1 and Level2 and Level2 can be access, but Level1 is always null
Result (removed some content from map to make used fields more visible):
map
{
"Tree Path": "(Root Code)",
"Level2": "1",
"Level1": "1",
"Id": "31102727"
}
map['Id'] map['Tree Path'] map['Level1'] map['Level2']
"31102727" "(Root Code)" null "1"
Is there some parameter i am missing, some little frustration disabler flag i need to use?