Is anyone using this in a real production environment? Would you suggest doing it?
I am building a new project and currently thinking about the techs I want to use. I have used prisma in a smaller project and it worked fine, but I am not sure if I will hit any limitations as soon as it gets more complex.
The other options I have is building a REST API with PHP (that's what I'm comfortable with and the frameworks are great, but I really love using graphQL on client side).
Or I use graphql-yoga without prisma (or use prisma just to generate the schemas) and then connect a mongodb database or a REST API to the resolvers.
I am not sure which is the smartest decision... I'd like go full on prisma, but it seems that there are still many things under costruction.
Any suggestions?