We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d06965 commit 7b9b1c1Copy full SHA for 7b9b1c1
1 file changed
src/cache/custom-cache.interceptor.ts
@@ -55,7 +55,6 @@ export class CustomCacheInterceptor implements NestInterceptor {
55
56
private getArgs(context: ExecutionContext): unknown[] {
57
const ctx = GqlExecutionContext.create(context);
58
- const req = ctx.getContext().req;
59
- return req.body;
+ return Object.values(ctx.getArgs());
60
}
61
0 commit comments