Sending Cypher script with LOAD CSV via REST isn't working for me
问题 I'm trying to send this cypher script via REST: {"statements":[{"statement":"LOAD CSV WITH HEADERS FROM \"http://localhost:9000/api/csv/Countries/csv\" as csvLine MERGE (c:Country { Code: csvLine.Code }) RETURN c","resultDataContents":["row"],"includeStats":true}]} But I am getting back: {"results":[],"errors":[]} If I the same embedded query in the Neo4J browser it works fine. The following works fine: {"statements":[{"statement":"CREATE n RETURN n","resultDataContents":["row"],"includeStats