// app.component.html <div *ngIf="productSupplier$ | async as supplier"> {{ supplier.name }} </button> </div> // app.component.ts productSupplier$ = this.productService.productSupplier$; // product.service.ts selectedProduct$ = ... productSupplier$ = this.selectedProduct$.pipe( switchMap(product => this.http.get<Supplier>(`${url}/${product.supplierId}`)) );