neo4j-rest-client icon indicating copy to clipboard operation
neo4j-rest-client copied to clipboard

Node attribute

Open melug opened this issue 13 years ago • 1 comments

Node has properties attribute. We can access the attributes using it, but can't set. It would be better if we can set like this: n.properties['name'] = 'Neo'

melug avatar Sep 30 '11 06:09 melug

That's true. Actually I have a TODO line in the code for remembering me to do that, but it's not done yet. By now, you can set the attributes using the regular syntax: n['name'] = 'Neo' Instead of n.properties['name'] = 'Neo'

versae avatar Sep 30 '11 15:09 versae