Skip to main content

@InjectQueryService

In v0.11.x an new decorator was added @InjectQueryService, this decorator replaces the ORM specific decorators:
  • @InjectTypeOrmQueryService
  • @InjectSequelizeQueryService
To migrate replace all @InjectTypeOrmQueryService and @InjectSequelizeQueryService with @InjectQueryService.
You still need to import the NestjsQueryTypeOrmModule or NestjsQuerySequelizeModule to use @InjectQueryService.
Edit this page