Recipes
How to get all successful request even if some are failing
Last updated
Last updated
const error$ = this.myService.getTodo(201)
.pipe(
catchError(err => of({isError: true, error: err})),
);