Comment by roflyear

5 days ago

I do think that using graphql will solve a lot of problems for people but it's super surprising how many people absolutely hate it.

GraphQL is just a typed schema (good) with a server capable of serving any subset of the entire schema at a time (pain in the ass).

  • It doesn’t actually require that second part. Every time I’ve used it in a production system, we had an approved list of query shapes that were accepted. If the client wanted to use a new kind of query, it was performance tested and sometimes needed to be optimized before approval for use.

    If you open it up for any possible query, then give that to uncontrolled clients, it’s a recipe for disaster.