Is there a way to redirect to the same URL and also refresh the page without calling all APIs from the beginning of the application? I have attempted using an anchor tag with href, but it results in refreshing the entire page and fetching all APIs again. In AngularJS, we typically use state.go where the entire page is not refreshed. For example: http://localhost:4200/user/27b3bcd3-5de9-4ca6-b2c9-d8ad708518fd/details/main If this is the details page containing a button that should display another user's details upon clicking, http://localhost:4200/user/985b97cd-fad4-4194-abd5-adbd9bfa056b/details/main
In Angular 9, I have experimented with routerLink and Router.navigate methods, but only the ID is updated in the URL without refreshing the page.