I am working with email data and importing the data in 5 parts in this order: NO ATTACHMENT OR LINK , URL ONLY , ATTACHMENT ONLY , URL AND ATTACHMENT , and Attachment to Attachment Name, FileName Node. The following is the import that worked fin...
This seems to address the problem I was having:
// NO ATTACHMENT OR LINK
USING PERIODIC COMMIT 1000
LOAD CSV WITH HEADERS FROM ("file:///sessions/new_neo_test_3.csv") AS row
WITH row, datetime(row.DateTime) AS dt
MERGE (a:Sender {name: row.From, dom...