To import a csv I used:
//Import csv
LOAD CSV FROM 'file:///spm.csv' AS line FIELDTERMINATOR ';'
CREATE
(:RED{ name: line[0], creationTime:timestamp()})
But since I am unlucky and live in a country with these letters: æ,ø,å (utf-8) I have not been ...