@nestjs/common APIs
- Module
- Injectable
- Controller
- Get
- Post
- Inject
- INestApplication
- Body
- Logger
- ExecutionContext
- DynamicModule
- Param
- UseGuards
- Query
- Provider
- HttpStatus
- ValidationPipe
- Global
- Type
- UnauthorizedException
- HttpException
- CanActivate
- SetMetadata
- Delete
- BadRequestException
- NotFoundException
- Req
- Res
- UseInterceptors
- Catch
- ArgumentsHost
- createParamDecorator
- OnModuleInit
- ExceptionFilter
- Put
- CallHandler
- NestInterceptor
- Request
- HttpCode
- ForbiddenException
- Scope
- ModuleMetadata
- PipeTransform
- OnModuleDestroy
- Patch
- LoggerService
- MiddlewareConsumer
- ArgumentMetadata
- applyDecorators
- RequestMethod
- NestMiddleware
- InternalServerErrorException
- UploadedFile
- UsePipes
- ConflictException
- forwardRef
- ParseIntPipe
- NestModule
- CustomDecorator
- HttpModule
- Optional
- UseFilters
- ClassSerializerInterceptor
- OnApplicationShutdown
- HttpService
- Header
- FactoryProvider
- NotAcceptableException
- Response
- Redirect
- OnApplicationBootstrap
- DefaultValuePipe
- Headers
- flatten
- Render
- ParseArrayPipe
- INestApplicationContext
- INestMicroservice
- ContextType
- ServiceUnavailableException
- mixin
- ParamData
- CacheTTL
- NotImplementedException
- UploadedFiles
- ValidationPipeOptions
- WebSocketAdapter
- ForwardReference
- CacheModule
- ValueProvider
- ValidationError
- ImATeapotException
- Sse
- All
- Next
- ParseBoolPipe
- HttpServer
- IntrospectionResult
- ShutdownSignal
- NestHybridApplicationOptions
- Paramtype
- UnsupportedMediaTypeException
- StreamableFile
- LogLevel
- Ip
- UnprocessableEntityException
- RpcExceptionFilter
- Session
- NestApplicationOptions
- BadGatewayException
- CACHE_MANAGER
- ParseUUIDPipe
Other Related APIs
@nestjs/common#ParamData TypeScript Examples
The following examples show how to use
@nestjs/common#ParamData.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: params.factory.ts From nestjs-mercurius with MIT License | 6 votes |
exchangeKeyForValue(type: number, data: ParamData, args: any) {
if (!args) {
return null;
}
if (!isLoaderContext(args)) {
return super.exchangeKeyForValue(type, data, args);
}
switch (type) {
case GqlParamtype.ROOT:
return args[0];
case GqlParamtype.ARGS:
return args[0].map(({ params }) =>
data ? params[data as string] : params,
);
case GqlParamtype.CONTEXT:
return data && args[1] ? args[1][data as string] : args[1];
default:
return null;
}
}