Is there a way to match url to get result based on dynamic queries in Django without having to declare multiple urlpatterns. What I mean is the same urlpatterns to match something like
localhost:8000/person/?name=john&age=10&gender=male
localhost:8000/person/?age=10&gender=male&name=john
localhost:8000/person/?gender=male&name=john&age=10