fastcrud icon indicating copy to clipboard operation
fastcrud copied to clipboard

Multiple nesting for joins.

Open JakNowy opened this issue 1 year ago • 1 comments

Is your feature request related to a problem? Please describe. I'm wonderring if it's currently possible to have multiple layers of nesting in joined objects.

Describe the solution you'd like Ability to return multi-nested objects like

{
    'id': 1,
    'name': 'Jakub',
    'item': {
        'id': 1,
        'price': 20,
        'shop': {
            'id': 1,
            'name': 'Adidas'
        }
    }
}

JakNowy avatar May 06 '24 19:05 JakNowy

Probably it's not possible without some more code, but it's indeed the next natural iteration of nested joins

igorbenav avatar May 07 '24 04:05 igorbenav