You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been experimenting with the rust memgraph client crate and I came across this definition of Path.
I am a bit confused because in memgraph, we get a Relationship when we query a path like so: MATCH path=((w1:Word)-[r1]->(t:Topic)<-[r2]-(w2:Word))
But in the rust crate, a path has a vector of UnboundRelationship instead of Relationship. I cannot get the start and end from the UnboundRelationship.properties either.
It would be nice if Path.relationships was a vector of Relationship instead.