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

Manage properties by using the `.properties` dictionary

Open versae opened this issue 11 years ago • 0 comments

So far, the only way to assign properties to nodes or relationships is by using the [] syntax

n["prop"] = "old value"

But could be also interesting to be able to assign or update the whole dictionary of properties

n.properties["prop"] = "value"
n.properties.update({"prop": "value"})

versae avatar Jul 23 '13 18:07 versae