ok so im trying to import a large csv into Neo4j, Its full news article and meta data per row
I am trying to get all of this into 1 node on the graph with the article as the primary and then metadata as the properties, in theory i want to NLP the article to get "fact" extraction and have the meta data travel with it.
LOAD CSV WITH HEADERS FROM 'file:///all.csv' AS row
WITH row.raw_text AS article, row.date AS date, row.author AS author, row.description AS description, row.title AS title, row.url AS url, row.tags AS tags, row.sitename AS sitename, row.author AS author,
MERGE (a:article {article: article})
SET a.date = date, a.author = author, a.url = url, a.tags = tags, a.sitename = sitename, a.title = title
LIMIT 5;
Is throwing error
Invalid input ')': expected whitespace or a relationship pattern (line 3, column 36 (offset: 291))
"MERGE (a:article {article: article})"
I have been copy/pasting so i dont know where the formating error could have come from??