How can I get an injected object from the container in nestjs?
This is something in Spring (Java). We can get the objects from the container like this:
CustomerClass myClass = applicationContext.getBean("CustomerClass");
Do we have anything in NestJS like that?