Ensure that your services are not causing circular dependencies. If your SubjectService
depends on SubSubjectService
and vice versa, you might need to use forwardRef
in the service providers as well. Have you tried this?
@Injectable()
export class SubjectService {
constructor(
@Inject(forwardRef(() => SubSubjectService))
private readonly subSubjectService: SubSubjectService,
) {}
}