UNPKG

@nestjs/graphql

Version:

Nest - modern, fast, powerful node.js web framework (@graphql)

10 lines 312 B
import { ArgumentsHost } from '@nestjs/common'; /** * Interface defining a GraphQL exception filter. * * @publicApi */ export interface GqlExceptionFilter<TInput = any, TOutput = any> { catch(exception: TInput, host: ArgumentsHost): TOutput; } //# sourceMappingURL=gql-exception-filter.interface.d.ts.map