Open
Description
In my graphql-based application I would like to change normalization context dynamically while EagerLoadingExtension
builds query. E.g. i want to have different Groups
for different queries (I can distinguish between them by request names).
As I see, you deliberately skip the place where I could connect my ContextBuilder
and change the context (I already have Groups
and Attributes
in my entity):
core/src/Bridge/Doctrine/Orm/Extension/EagerLoadingExtension.php
Lines 105 to 108 in 797cea6
Why is this done? Or did I choose the wrong way to solve my problem?
Thanks.