From the didTransition hook of a topic.* route, I access the parent’s model with this.modelFor('topic').
This works very well, except in one case: when the topic has just been created (with the API), the model I get from modelFor is incomplete. For example, it has the id property, but not the tags property. The complete model becomes available a moment later.
Which hook should I use to get the complete model?