I'm importing CSV files to Neo4J, but Neo4J doesn't import my primary key.
I'm using this:
LOAD CSV WITH HEADERS FROM "file:///C:/c/tabela_sujeito.csv" AS row
CREATE(:Sujeito{suj_ID:row.id, idade:row.idade, altura:row.altura, peso:row.peso, genero:row.genero, mao_dominante:row.mao_dominante});
suj_ID
is my primary key, and it isn't imported, unlike the other attributes.