hi
how can i edit node content not property by property? (i dont want to remove node and recreate it)
for example here is my node:
start n=node(3) retrun n; Result is : {type:"Person",name:"John"}
i want to do something like this :
start n=node(3) set n={type:"Employee",name:"jane",code:2434} return n;
instead of this:
start n=node(3) set n.type="Employee",
n.name="jane",n.code=2434 return n;
any solution?
thank you.