[Answered ]-Filter not null dates with Django and GraphQL

1👍

You can use isnull-(doc) lookup as

class TourFilter(OrderByMixin):
    class Meta:
        model = TourModel
        fields = {
            'featured_date': ['exact', 'lt', 'gt', 'isnull'],
        }
👤JPG

Leave a comment