module Neo4j::Cypher::MatchStart::Algorithms
Public Instance Methods
shortest_path()
click to toggle source
# File lib/neo4j-cypher/match.rb 172 def shortest_path 173 @match_start.algorithm = "shortestPath" 174 @match_start.eval_context 175 end
shortest_paths()
click to toggle source
# File lib/neo4j-cypher/match.rb 177 def shortest_paths 178 @match_start.algorithm = "allShortestPaths" 179 @match_start.eval_context 180 end