Hi, When I tried to submit my graphgist, I got the following error on LOAD CSV.:
Here is my scrip (neo4j-version: 3.1.0)t: USING PERIODIC COMMIT LOAD CSV WITH HEADERS FROM "https://github.com/kaisesha/cdrgraph/blob/master/CDR_Gist3.csv" As line WITH line, apoc.date.format((ToInteger(line.TME)),('s'), ('yyyy/MM/dd'), ('PST')) as dates WITH line, dates, REPLACE(dates, "/", "") as dt ....there is more that creates nodes etc... Also, this works fine on my machine. Here is the error that I got: Invalid input '(': expected an identifier character, whitespace, '?', '!', '.', node labels, '[', "=~", IN, STARTS, ENDS, CONTAINS, IS, '^', '*', '/', '%', '+', '-', '=', "<>", "!=", '<', '>', "<=", ">=", AND, XOR, OR, AS, ',', ORDER, SKIP, LIMIT, WHERE, LOAD CSV, START, MATCH, UNWIND, MERGE, CREATE, SET, DELETE, REMOVE, FOREACH, WITH, RETURN, ';' or end of input (line 3, column 28 (offset: 106)) "WITH line, apoc.date.format((ToInteger(line.TME)),('s'), ('yyyy/MM/dd'), ('PST')) as dates" This works on graphgist: LOAD CSV WITH HEADERS FROM "https://raw.githubusercontent.com/kaisesha/cdrgraph/7b15f61499fc4e30102b6a5a842c72fbce655520/CDR_Gist3.csv" As line RETURN line LIMIT 2; How to correct the error that I got? -Kamal -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
