Hi all,
I have the following short query, which reads a 40.000 lines input files, but suddenly stops after the first line.
LOAD CSV WITH HEADERS
FROM 'file:///Customers/data.csv" as row FIELDTERMINATOR ';'
WITH row, trim(row.`nome del produttore`) AS ProducerName
WHERE row.uuid <> "" AND ProducerName <> ""
CALL db.index.fulltext.queryNodes("Producer_name", ProducerName) YIELD node, score
WITH row, ProducerName, node, score
LIMIT 3
RETURN linenumber(), node.name, ProducerName, score
The result is just the 3 lines from `limit 3 but related only at the first record in LOAD CSV`
Can anyone help me to understand why it doesn't read all the entire file? Apart for the ````lucene` call, it is a simple `load CSV`