DEV Community

Cover image for TLDR GraphQL?

TLDR GraphQL?

Khaled Garbaya on September 10, 2018

Hey Friends, I am writing a Tl;Dr (Too long; Didn't read) blog post about Using GraphQL on the client side. Mainly for folks to get the information...
Collapse
 
speculative profile image
Jeffrey Tao

I would love to see a non-trivial example which motivates the use case of GraphQL. Most tutorials that I've seen seem to show a very basic query which could easily be fulfilled by any other architectural style.

Collapse
 
khaled_garbaya profile image
Khaled Garbaya

My blog post will start with a basic query and evolve it each time to show case a new concept, what do you think?

Collapse
 
speculative profile image
Jeffrey Tao

That sounds like an ideal format! One of my major challenges with figuring out if I care about GraphQL enough to try to learn it has been trying to find resources on what happens beyond the beginning stages of a project using GraphQL.

I'm looking forward to it :)

Collapse
 
lysofdev profile image
Esteban Hernández

Authenticating your requests and some great example queries and mutations.

Collapse
 
gklijs profile image
Gerard Klijs

How to get the types from the schema, like how to generate typescript from it. I really liked to use subscriptions.

Collapse
 
idoshamun profile image
Ido Shamun

Pros and cons compared to REST

Collapse
 
jasman7799 profile image
Jarod Smith

Validation and making your own scalars

Collapse
 
khaled_garbaya profile image
Khaled Garbaya

That's a great Idea but I don't think it will make it at least for this one, maybe we'll have TLDR server side.
I am trying to have a first beginner friendly and mostly client side GraphQL

Collapse
 
vanuan profile image
John Yani
Collapse
 
killrazor profile image
Tyler Christian • Edited

Routing and dealing with parameters like POST body, URI, and query parameters.