Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
11-28-2018 06:08 AM
Hi, I would like to know if there is a possibility when doing a match that it return nothing I just want to set properties on nodes e.g :
LOAD CSV WITH HEADERS FROM "file:///result.csv" AS line
MATCH(n:DVL {ondernemingsnummer: line.ondernemingsnummer}) set n.fourHops = line.cnt return n;
In this example, I don't want to return anything but set property fourHops
Solved! Go to Solution.
11-28-2018 10:50 AM
That approach should be fine. Ending with a SET, REMOVE, MERGE, CREATE, or DELETE should work.
11-28-2018 10:50 AM
That approach should be fine. Ending with a SET, REMOVE, MERGE, CREATE, or DELETE should work.
11-28-2018 12:56 PM
Thanks Andrew, indeed it's working.
All the sessions of the conference are now available online