node = rel.getOtherNode( node );
Long nextRelId = doer.cameFrom.get( node.getId() );
rel = nextRelId == null ? null : graphDb.getRelationshipById( nextRelId );
}
Path path = toPath( start, rels );
return new WeightedPathImpl( weight, path );
}
}
return null;
}