I navigate to a destination using deep link in another navigation graph
Navigation.findNavController(view).navigate(Uri.parse(link));
And I just want to return to the previous destination.
However, popBackStack() only restart the deep link destination
Navigation.findNavController(view).popBackStack();
How can I return to the previous destination if I insist to use deep link?