RedisGraph/redisgraph-py

Mutating properties dictionary after node creation causes problems when they all point to the same object

isidentical opened this issue · 0 comments

from redisgraph import Graph, Node, Edge

graph = Graph("world", None)
node1 = Node("foo")
node2 = Node("bar")
node1.properties["x"] = "y"
print(node2.properties)