Hello everyone, I have a small question that I would like to clarify with you. I am creating a microservices application in which I currently have 3 Microservices (api-gateway, user microservice and authentication microservice)
In the user microservice I manage all the information of the users and their operations (use TypeORM) and create the users entity within that microservice.
However, from the authentication microservice I need to access that table in some way (so that I still don’t know how to achieve)
I know I can do SQL queries natively with the TypeORM entity manager but I don’t know how safe that is.
What do you recommend to me to be able to access the login data in the user microservice?
The two Microservices share the same database.