meteor-rxjs icon indicating copy to clipboard operation
meteor-rxjs copied to clipboard

Exposing Mongo Cursor as RxJS Observable

Results 63 meteor-rxjs issues
Sort by recently updated
recently updated
newest added

When I don't separate meteor from the client I access to multiple databases using var database = new MongoInternals.RemoteCollectionDriver(""); MyCollection = new Mongo.Collection("collection_name", { _driver: database }); There is any...

maybe I am misunderstanding how find should with with RXJS in Meteor. if I have this on the client ```javascript Models find(type): Observable { return this.Models.find({}); } constructor(){ MeteorObservable.subscribe('testCollection').subscribe(); this.Models...

Hi, I'm facing an issue with findOne function. Yes, when the subscription is not ready, the function return undefined. Should we wait subscriptionReady for a findOne Operation? Or I'm going...