Maurizio @sithmel
Should we only use GraphQL now?
I've seen things you people wouldn't believe. Attack ships on fire off the shoulder of Orion. I watched C-beams glitter in the dark near the Tannhäuser Gate. All those moments will be lost in time, like tears in rain. Time to die.
Blade Runner - 1982
I've seen things you people wouldn't believe. XML-RPC, api automatically built out of a WSDL, SOAP XML payloads. All those moments will be lost in time, like tears in rain. Time to use REST.
Maurizio - 2016
REST best feature is its simplicity
REST worst feature is its simplicity
Simple concepts
Simple concepts
Where the resource is
Validation
Authentication & authorisation
Caching
Do not design an API in advance
If you need multiple request to do what you need, you are doing it wrong
https://www.tes.com/api/data/1?onlyIds=true
Use them for filtering data for example. They will be treated as different resources
http://resource-review/api?_includes=users[:10]name
https://www.npmjs.com/package/express-middleware-filter-data
What to do with a resource
Can be cached!
No consequences on the data stored
Safe to retry if fails
It doesn't matter if I call it multiple times
Stream parsing
Conditional GET
Fine tuned caching
range request
Content negotiation
Really just all HTTP features
Multiple standard response code
Different resources on same URL
Unsafe GET
*Wrong verb
Use it because the payload is smaller
it is faster
It is the future
Yep, so was SOAP
Without http caching? really ?
Not necessarily
Save a lot of time if you want to see your data in multiple shapes/combinations (Just like FB)
It is convenient with Apollo/React
Others?