I am rather new in Angular and my problem is: I have main component which have some child components like form component, tab component, status component.
On main component init I do a request for data (let's say i subscribe it to Object1). This date are used in forms, and status component.
But I have a tab component where i have on it's init another request (let's say Object2). On this component i have a button which runs http post (updating Object2) and on backend side it change one value from Object1 (status value in status component).
How i can reload all main component to see that Object1 is changed after succes on http post in tab component?