I want to annotate a datetime field to know whether it is null. Something like:
Table.objects.all().annotate(date_is_null=XXX(YYY)).values(date_is_null, .....)
What do I need to replace XXX(YYY) to check if the field is null?
(I'm using .values().annotate() later for a Group By, so it must be in annotate first)