module Neography::NodePath
Public Instance Methods
all_paths_to(to)
click to toggle source
# File lib/neography/node_path.rb, line 4 def all_paths_to(to) PathTraverser.new(self, to, "allPaths", true) end
all_shortest_paths_to(to)
click to toggle source
# File lib/neography/node_path.rb, line 12 def all_shortest_paths_to(to) PathTraverser.new(self, to, "shortestPath", true) end
all_simple_paths_to(to)
click to toggle source
# File lib/neography/node_path.rb, line 8 def all_simple_paths_to(to) PathTraverser.new(self, to, "allSimplePaths", true) end
path_to(to)
click to toggle source
# File lib/neography/node_path.rb, line 16 def path_to(to) PathTraverser.new(self, to, "allPaths", false) end
shortest_path_to(to)
click to toggle source
# File lib/neography/node_path.rb, line 24 def shortest_path_to(to) PathTraverser.new(self, to, "shortestPath", false) end
simple_path_to(to)
click to toggle source
# File lib/neography/node_path.rb, line 20 def simple_path_to(to) PathTraverser.new(self, to, "allSimplePaths", false) end