You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
It would be good to have a way to create a resolver class decorator so that we would not have to repeat the decorator on each method of the resolver class
Describe the solution you'd like
Creation of a custom decorator
exportfunctionAuthGuard(): any{returncreateMethodDecorator(async({ context },next)=>{// decorator business logic});}
We should be able to decorate a class resolver
and every Query, Mutation in the resolver is executed after the decorator
Is your feature request related to a problem? Please describe.
It would be good to have a way to create a resolver class decorator so that we would not have to repeat the decorator on each method of the resolver class
Describe the solution you'd like
Creation of a custom decorator
We should be able to decorate a class resolver
and every Query, Mutation in the resolver is executed after the decorator
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: