top | item 46039245

(no title)

roflyear | 3 months 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.

discuss

order

dcre|3 months ago

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).

wrs|3 months ago

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.

jlouis|3 months ago

No.

It's a way to transmit a program from client to server. It then executes that program on the server side.

koakuma-chan|3 months ago

I wish people at least stopped using JavaScript and stopped writing requests to back-end by hand.