1👍
✅
You can use isnull
-(doc) lookup as
class TourFilter(OrderByMixin):
class Meta:
model = TourModel
fields = {
'featured_date': ['exact', 'lt', 'gt', 'isnull'],
}
👤JPG
Source:stackexchange.com