0

hey folks,

need opinion about prisma grahql.

is it mature tech for ecommerce platform?

documentation and online help?

Comments
  • 0
    I wouldn't use it. It's basically a crud abstraction that maps database tables to entities, then uses graphql to create a distributed crudplex. So your users are 1 abstraction distant from calling the db directly.

    When your database needs optimization for load, you're going to end up writing the SQL/using an ORM and configuring graphql anyways.

    If you're going that route, just use a document db and a simple scaffolding library to hook up to graphql and save some shekels.
Add Comment