Ребят подскажите по django ORM через фильтр отменял нужные мне записи, и хочу из этих записей взять ту кото рая сама свежая по дате, т.е. У которой в поле дата стоит ближайшая дата к текущей
Additionally, if a some_queryset has not yet been evaluated, but you know that it will be at some point, then using some_queryset.exists() will do more overall work (one query for the existence check plus an extra one to later retrieve the results) than simply using bool(some_queryset), which retrieves the results and then checks if any were returned.