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
Scenario: Integer Vid [2] SinglePair Shortest Path
When executing query:
"""
FIND SHORTEST PATH FROM hash("Tim Duncan") TO hash("LaMarcus Aldridge") OVER like
"""
Then the result should be, in any order, with relax comparison:
| path |
| <("Tim Duncan")-[:like]->("Tony Parker")-[:like]->("LaMarcus Aldridge")> |
The clause FIND SHORTEST PATH FROM works the same as allshortestpaths(). BUT
MATCH p = allshortestpaths()
RETURN nodes(p), relationships(p), length(p)
can provide more info.
OR e.g.,
MATCH p = allshortestpaths()
WHERE length(p) > 3
RETURN p
The text was updated successfully, but these errors were encountered:
The clause
FIND SHORTEST PATH FROM
works the same as allshortestpaths(). BUTcan provide more info.
OR e.g.,
The text was updated successfully, but these errors were encountered: