I'm trying to import CSV with the CYPHER console.
I found example on this URL
Example:
LOAD CSV FROM 'https://neo4j.com/docs/cypher-manual/3.5/csv/artists.csv'
When I try to call this command with any kind of input file (local or with URL) I got this error
Neo.ClientError.Statement.SyntaxError
Unexpected end of input: expected whitespace, '.', node labels, '[', "=~", IN, STARTS, ENDS, CONTAINS, IS, '^', '*', '/', '%', '+', '-', '=', '~', "<>", "!=", '<', '>', "<=", ">=", AND, XOR, OR or AS (line 1, column 79 (offset: 78))
"LOAD CSV WITH HEADERS FROM "http://srv.sidelov.com:8000/20200228-FULL-1_1.csv""
^
Even when I try to run example without any changes from sample
LOAD CSV FROM 'https://neo4j.com/docs/cypher-manual/3.5/csv/artists.csv'
I got the same error
Unexpected end of input: expected whitespace, '.', node labels, '[', "=~", IN, STARTS, ENDS, CONTAINS, IS, '^', '*', '/', '%', '+', '-', '=', '~', "<>", "!=", '<', '>', "<=", ">=", AND, XOR, OR or AS (line 1, column 73 (offset: 72))
"LOAD CSV FROM 'https://neo4j.com/docs/cypher-manual/3.5/csv/artists.csv'"
What wrong with CSV importing syntaxis?
Thanks in advance!