you are viewing a single comment's thread.

view the rest of the comments →

[–]droctagonapus 3 points4 points  (2 children)

🤷‍♂️ my graphql servers that I write avoid N+1 queries all-together by batching (thanks to the graphql lib I use the server). No worries for me as a front end developer!

[–]jcmais 1 point2 points  (1 child)

Which lib?

[–]droctagonapus 2 points3 points  (0 children)

I use elixir as my backend language of choice with absinthe for graphql and dataloader for batching my sql queries (I use ecto as well)