I have a model Chair with a nullable field .datetime.
I want a query that will get all chairs that have some value in .datetime, no matter what it is, as long as it’s not None.
I know how to do this by building a Q object and negating it, but is there a less cumbersome way?
It’s interesting you mention negating the Q object – people usually learn the other way around 🙂