|
|
|
|
|
by brillout
2407 days ago
|
|
"becoming the new SQL quickly" - Prisma, who led the way on that front, abandoned this pursuit. "Learn GraphQL" - I'm not sure you need to learn GraphQL. You need to now that GraphQL is a powerful tool for APIs consumed by third party devs, such as the GitHub or Facebook API. But for internal APIs (and more than 98% of APIs are internal!), GraphQL (and even REST) is overkill and you'd be better off with RPC, such as Wildcard API [1] or gRPC [2]. Many developers will never have to build a GraphQL API in they entire career. Only few companies need to expose their data to third parties. [1]: https://github.com/reframejs/wildcard-api [2]: https://grpc.io/ |
|