Is there a way to load a csv with the column headers as the properties of a certain node label and the corresponding values to each row without having to explicitly list it out:
So instead of below:
LOAD CSV WITH HEADERS FROM "some_csv.csv" AS row
CREATE (n:Example)
SET n = row,
n.unitPrice = toFloat(row.unitPrice),
Have something where it implicitly sets the Column headers to the respective row value ?