Data Loading and Local Pagination
I want to do local pagination.
Is it possible to have child routes sharing parent query?
this is base route
this is child route
this is the view that both share
this works for
'/images' route but not for 'images/image-id' because the Route does not match.what's the best approach to do that?
do I just have to add the same data query to the
'/images/$id' route without worrying about the double query?or there is a more efficient way to handle these use cases?