private IEnumerable <Relationship> Map2Rels(LongIterable ids)
 {
     return(ids.asLazy().collect(this.relationship));
 }
 private IEnumerable <Node> Map2Nodes(LongIterable ids)
 {
     return(ids.asLazy().collect(id => new NodeProxy(_proxySpi, id)));
 }