graphene-django-cud icon indicating copy to clipboard operation
graphene-django-cud copied to clipboard

Allow nested attributes on auto_context_fields

Open flp9001 opened this issue 2 years ago • 0 comments

That change will allow nested attribute fetching on auto_context_fields:

class ItemNode(DjangoCreateMutation):
    class Meta:
        model = Item
        auto_context_fields = {
            'profile': 'user.profile' 
    }

flp9001 avatar Jun 01 '22 16:06 flp9001