I have an “organization” model with multiple hasMany relationships:
users: DS.hasMany('user',{async:true}),
templates: DS.hasMany('template',{async:true}),
When I use this model in a handlebars template to display the model, it pulls in both the relationships. But when I try to create a new user and load in the organization via:
this.store.find('organization');
it is not pulling in the relationships for templates, and vice-versa, when I create a new template and load in the organization, it doesn’t load in the users relationship. What could I be missing, or what do I need to do differently?