Is it possibly to denormalize a multi-level relationship using django-denorm?
Specifically, I have the following structure:
Question --> User --> CustomProfile --> Avatar
I want to denormalize the avatar name on the Question model. At the moment, I have to traverse through these 4 tables to get that information.
I am using Postgresql.