Raphtory icon indicating copy to clipboard operation
Raphtory copied to clipboard

Bring graph property queries inline with node/edges

Open miratepuffin opened this issue 1 year ago • 1 comments

g = PersistentGraph()
g.add_node(1,1)
g.node(1).add_updates(1,{"weight":10})
g.node(1).add_updates(3,{"weight":20})
g.window(5,7).node(1).properties.temporal.get("weight")
#Returns (5,20)
g = PersistentGraph()
g.add_property(1,{"weight":10})
g.add_property(3,{"weight":20})
g.window(5,7).properties.temporal.get("weight").values()
#Returns nothing

miratepuffin avatar Sep 13 '24 15:09 miratepuffin

This is not fixed

ljeub-pometry avatar Dec 10 '24 09:12 ljeub-pometry