mongodb calls on DB's rather than collections
When I do a
I get a cursor with the proper looking data but without
defined on it as I would if I was using
Is there a way for me to attach them?
It looks like this normally defined in
denodrivers/mongo/src/protocol/
find on a mongoclient rather than a collectionI get a cursor with the proper looking data but without
.hasNext() , .next() .map() or .toArray() defined on it as I would if I was using
collection.findIs there a way for me to attach them?
It looks like this normally defined in
class CommandCursor<T> indenodrivers/mongo/src/protocol/
