[Answer]-Django chaining multiple queries together to return latest

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

Leave a comment