Hi there,
I try to import the following:
Im having a hard time to just having the "name" displayed without using coalesce as a placeholder or skipping rows with a where clause: WITH row WHERE row.country IS NOT NULL.
I´m stuck at this. Maybe someone has an idea.
LOAD CSV WITH HEADERS FROM 'file:///csv/organization.csv' AS row
MERGE (n:Organization {
abbreviation: row.abbreviation,
name: row.name,
city: row.city,
country: row.country,
province: row.province,
established: datetime(replace(row.established, '-', '') + 'T00:00:00')
});