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
-FROM GRAPH_TABLE (snb
MATCH p = ANY SHORTEST (a:Person wherea.name='Daniel')-[k:knows]->{2,3}(b:Person)
COLUMNS(element_id(p), a.name, b.name)
Potential cause: The lower and upper bounds are 1 & 1 because the previous element pattern is seen as a Subpath because of the filter.
Another query where this goes wrong
-FROM GRAPH_TABLE (pg
MATCH
p = ANY SHORTEST (a:Person)-[k:knows]->{2,3}(b:Person)
COLUMNS (path_length(p), element_id(p), a.nameas name, b.nameas b_name)
) study
order bystudy.name, study.b_name;
The text was updated successfully, but these errors were encountered:
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Test in
shortest_path.test
Potential cause: The lower and upper bounds are 1 & 1 because the previous element pattern is seen as a Subpath because of the filter.
Another query where this goes wrong
The text was updated successfully, but these errors were encountered: