Laurent Ros
Laurent Ros
Same here ```js // @flow strict type StaticKey = {| staticKey: string, |}; const staticKeyObject: StaticKey = { staticKey: 'Haha', }; type DynamicKey = {| [key: number]: string, |}; const...
Found in [this example](https://github.com/OOTOPIA/ootopia-api/blob/staging/src/sqs-worker/update-post-video-status/update-post-video-status.ts#L9) to inject the dependency using `@Inject(forwardRef(() => Service))`. Seems to do the job, not sure why we need that though...
Actually forgot the `@Injectable()` on the Handler in my case...
Found in [this example](https://github.com/OOTOPIA/ootopia-api/blob/staging/src/sqs-worker/update-post-video-status/update-post-video-status.ts#L9) to inject the dependency using `@Inject(forwardRef(() => Service))`. Seems to do the job, not sure why we need that though...
Actually forgot the `@Injectable()` on the Handler in my case, seems to be working fine now!
Sorry for the late reply, I'm using `@nestjs/common: 9.4.0` !