i'm about to have many models, related to each other, and in most cases, i wouldn't like to get the whole tree... the whole model with it's relations, and relations of relations....
Is it possible?
TL;DR
Developers are wondering if it's possible to have relationships in a database but only fetch them on demand. One suggestion is to save the related item ID in a column and perform the join manually when needed. This way, you can select everything except the related item. This approach can help avoid fetching the entire tree of related models and their relations.