Since each child state is waiting for the resolve of the parent object, we are performing our resolves in serial. Since all we really need are ID's (which are available immediately) we should relocate our get() calls to the class methods instead of the instance methods, or return the instances before they've been updated with data (this may make the controller a little more complex however).
Since each child state is waiting for the resolve of the parent object, we are performing our resolves in serial. Since all we really need are ID's (which are available immediately) we should relocate our
get()
calls to the class methods instead of the instance methods, or return the instances before they've been updated with data (this may make the controller a little more complex however).