We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae7ceed commit 7be05f3Copy full SHA for 7be05f3
src/core/exception/exception.filter.ts
@@ -62,6 +62,10 @@ export class ExceptionFilter implements GqlExceptionFilter {
62
? HttpStatus.FORBIDDEN
63
: codes.has('Client')
64
? HttpStatus.BAD_REQUEST
65
+ : codes.has('Transient')
66
+ ? HttpStatus.SERVICE_UNAVAILABLE
67
+ : codes.has('NotImplemented')
68
+ ? HttpStatus.NOT_IMPLEMENTED
69
: HttpStatus.INTERNAL_SERVER_ERROR;
70
71
const out = {
0 commit comments