In the process of updating my angular/breeze application, I wanted to incorporate the new breeze angular service for improved performance and functionality. The documentation guided me on removing the Q.js file and other dependencies, but I've encountered a roadblock in replacing the following code snippet:
primePromise = $q.all([getLookups(), getSpeakerPartials()])
.then(extendMetadata)
.then(success);
return primePromise;
Alternatively,
$q.when();
I'm seeking advice on how to effectively replace this specific piece of code with the new breeze angular service. Any suggestions or insights would be greatly appreciated.