I have nodes in my graph that contain properties that are of type double[]. How can I do something like this in cypher?
for (int i=0; i < theArray.length(); i++)
theArray[i] *= .8;
This obviously doesn't work, but here is the general idea:
start a = node(0)
a.theArray = a.theArray*.8
return a;