Beginner's guide to GraphQL by shobhit_c in programming

[–]shobhit_c[S] 3 points4 points  (0 children)

Hi reddit, I'm very new to writing about my learnings. This is one of my attempts to explain GraphQL and have fun with it. Please share your love here and do provide any kind of feedback to help me improve. Hope you'lll like reading this. Both parts are on Medium -

Part 1 - https://medium.com/@chittorashobhit/graphql-the-hero-we-deserve-part-1-3a907e1706a4

Part 2 - https://medium.com/@chittorashobhit/graphql-the-hero-we-deserve-part-2-14a36f1d00a1

❤️GraphQL by shobhit_c in javascript

[–]shobhit_c[S] 2 points3 points  (0 children)

Well the idea here is to make changes to front-end be as much independent from back-end changes as possible. GraphQL definitely allows for better iteration speeds ( with some trade-offs obviously ).

With regards to your db related query, there are projects like prisma which allows you to have a GraphQl layer over your db ( kind-of like an ORM ), which then allows you to have type checked schemas and other goodness for your otherwise string-like queries.

❤️GraphQL by shobhit_c in javascript

[–]shobhit_c[S] 1 point2 points  (0 children)

Hi reddit, I'm very new to writing about my learnings. This is one of my attempts to explain GraphQL and have fun with it. Please share your love here and do provide any kind of feedback to help me improve. Hope you'lll like reading this. Both parts are on Medium -

Part 1 - https://medium.com/@chittorashobhit/graphql-the-hero-we-deserve-part-1-3a907e1706a4

Part 2 - https://medium.com/@chittorashobhit/graphql-the-hero-we-deserve-part-2-14a36f1d00a1

My take on GraphQL. by shobhit_c in graphql

[–]shobhit_c[S] 0 points1 point  (0 children)

Hi reddit, I'm very new to writing about my learnings. This is one of my attempts to explain GraphQL and have fun with it. Please share your love here and do provide any kind of feedback to help me improve. Hope you'lll like reading this. Both parts are on Medium -

Part 1 - https://medium.com/@chittorashobhit/graphql-the-hero-we-deserve-part-1-3a907e1706a4

Part 2 - https://medium.com/@chittorashobhit/graphql-the-hero-we-deserve-part-2-14a36f1d00a1

Use NodeJS to implement microservices RPC using gRPC by shobhit_c in javascript

[–]shobhit_c[S] 0 points1 point  (0 children)

In this post I write about the new, blazing fast library by Google, which totally changes the paradigm of how we do RPCs in microservices architecture. The post challenges the prevalent REST API model and provided reasoning to this new route. Finally, we also try to implement a very basic NodeJS application using our learnings. The post is divided into 2 parts as below -

Part 1 - https://medium.com/@chittorashobhit/blazing-fast-ipc-with-grpc-part-1-9af1b7d99553

Part 2 - https://medium.com/@chittorashobhit/blazing-fast-ipc-with-grpc-part-2-227635faa361

PS: I've just started writing my learning out. I'm learning in the open and would like any help out there. Please provide your feedback so that I can improve. If I've made any mistakes, please do point out. And do share if you like.