Does anybody have any good resources on how to write a systematic review?
[Research]PRISMA on a review?
If you are writing a narrative review, then there's no need to follow PRISMA guidelines
More on reddit.comDoes anyone here have experience with writing Cochrane/PRISMA systematic literature reviews?
When should I choose to use Prisma/Yoga instead of Mongoose/REST and vice versa?
This is the journey I always take when building new services:
First, make a REST/gRPC interface over your service. This is the "contract" that other services can depend on
Once you have more than n services that your clients interact with, and it's getting annoying to merge the responses into a single value for your client, add a GraphQL gateway
What that n value is changes depending on my mood but it's usually 3.
Most times, I don't need to write the gateway and I just use REST/gRPC. However, if I do need to add a GraphQL interface on top, it's a different service in a different world that leverages the work I made in the first step.
The long and the short of it is this: GraphQL solves a specific problem and if you don't feel that problem, just use what you're comfortable with. Unless that's SOAP. Then just stop.
More on reddit.com