django filter query params
How to filter query with dynamic multiple query params in django rest framework

learn how to make date based filter and other custom filters in django and django rest framework without any third party package
Before Start
This tutorial will use django rest framework APIView and Django auth User Model
Project name : core
Project app : filtersapp
Let’s Start
Create a custom serializer in filtersapp/serializers.py to use User model fields
Create a APIView in filtersapp/views.py to write the filters
Attach the view to url to fetch the view
In Postman with above query parameters result will look like this and you can change /update or remove query parameters according to need

That’s it !!
you have created a custom search filter without using any package