LOAD CSV WITH HEADERS FROM
'https://github.com/aravind-sundaresan/Graph-ML-Fraud-Detection/blob/master/data/bs140513_032310.csv' AS line
WITH line,
SPLIT(line.customer, "'") AS customerID,
SPLIT(line.merchant, "'") AS merchantID,
SPLIT(line.age, "'")...