I have a fragment container view to load more than three fragments, each fragment shared by ViewModel using navGraphViewModels
private val viewModel: HomeViewModel by navGraphViewModels(R.id.home_navigation_xml) { defaultViewModelProviderFactory }
How can we get the same instance of ViewModel inside parent activity?