I have an array of Observable contained in activatedRoute.data.example and i want to subscribe to the latest value emitted.
private data$ = forkJoin(
  this.activatedRoute.data.pipe(
    map(({ examples }) => examples)
  )
);
ngOnInit(): void {
  this.data$.subscribe((v) => console.log(v));
}
Every example here is an http request:
this.http.get<Example>(`${this.baseUrl}`, { params: query })
But I never see neither the log nor the API call to the backend in the network browser's tab.


next,error,complete. You know that an subscription is completed when thecompletefunction is been called.