I try to execute this comnands, but screen show the message: How to solve this problems?
Cannot use periodic commit in a non-updating query (line 1, column 7 (offset: 6))
"USING PERIODIC COMMIT 500"
initial input comnand:
:auto USING PERIODIC COMMIT 500
LOAD CSV WITH HEADERS FROM "https://lovecandyhsu.neocities.org/relations.csv" AS csvLine
MATCH (s1:Station { id: toInteger(csvLine.fromId)}),(r:Route { id: toInteger(csvLine.route_informationId)}),(s2:Station { id: toInteger(csvLine.toId)})
OPTIONAL MATCH (s1)<-[:FROM]->(r)
OPTIONAL MATCH (r)<-[:TO]->(s2)
RETURN csvLine