Net.Graph.Neo4JD.Node.GetAllPathsTo C# (CSharp) Method

GetAllPathsTo() public method

public GetAllPathsTo ( Node endNode ) : IList
endNode Node
return IList
        public IList<Relationship> GetAllPathsTo(Node endNode)
        {
            RequestResult result = _nodeRepo.GetRelatedNodes(this, "out");
            return _nodeRepo.GetAllPathsTo(endNode,result);
        }