Is it required to define the DI subtrees strategy for a "durable" provider to work correctly?
Or can I skip defining the strategy and have nestjs manages internally
Context:
I want to obtain the request in a certain provider, but I don't want to pass the request from the controller throughout the entire graph of providers
For that reason I have defined the scope of that provider as "REQUEST" but I want to make it durable for performance reasons, I am not really interested in having a multi tentant strategy
Thanks