neo4j-rest-client
neo4j-rest-client copied to clipboard
Manage properties by using the `.properties` dictionary
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"})