[Answered ]-Flatten Django Queryset that is using select_related() and full join

1👍

you can do that like this:

data = Data.objects.annotate(age=F('extra__age')).all()

then you can access the age like this

data[0].age

Leave a comment