Hi, I'm quite new in meteor and recently I started mixing it with angular2. I have tried in all possible ways to do something that is quite similar to populate in mongoose to obtain the complete objects of relationships. For this I used the meteor packages stfnbrgh:nested-collection-helpers
and dburles:collection-helpers
but when I created the collection as follows
import {MongoObservable} from "meteor-rxjs";
export const Tasks=new MongoObservable.Collection('tasks');
When I try to do
Tasks.helpers({
author(){
Meteor.users.findOne(this.trabajador);
}
})
He tells me
unresolved function or method helpers
Someone can help me