1👍
✅
if you want only 1 object you can use max() with key
max(result_list, key=lambda x: x.date) #or whatever the name of the field is (should be same on all models)
on the same fashion if you want the whole list sorted by the date field you can use sorted() and give the above key
Source:stackexchange.com