Slide 1

Slide 1 text

RESTful APIs are dead, long live GraphQL José María Rodríguez Hurtado @durbon [email protected] 1 #T3chFest2017

Slide 2

Slide 2 text

Do you are a curmudgeon? It's easy to cry over the technologies we loved and lost. But let's take time to appreciate the many ways in which technology really has improved 2

Slide 3

Slide 3 text

Do you are a hipster? “They want to be the latest trend in technology” 3

Slide 4

Slide 4 text

Solve real problems 4

Slide 5

Slide 5 text

Overview Reviewing REST Problems working on product with APIs GraphQL 5

Slide 6

Slide 6 text

6

Slide 7

Slide 7 text

7

Slide 8

Slide 8 text

¿Using REST correctly? Nick Schrock. React London Meetup. 2015 8

Slide 9

Slide 9 text

Reviewing RESTful API 3 main principles 9

Slide 10

Slide 10 text

Main principles API REST - Define separate resources. Accessible via URI - These resources are manipulated using HTTP requests where the method (GET, POST, PUT, PATCH, DELETE) has specific meaning. - Discover resources, thanks to HATEOAS (Hypertext As The Engine Of Application State). 10

Slide 11

Slide 11 text

API RESTFul Endpoint resources GET /posts - Retrieves a list of tickets GET /posts/12 - Retrieves a specific ticket GET /posts/12/comments - Retrieves comments GET /posts/12/comments/42/ - Retrieve specific comment POST /posts - Creates a new post PUT /posts/12 - Updates post #12 with payload provided PATCH /posts/12 - Partially updates post #12 DELETE /posts/12 - Deletes post #12 11

Slide 12

Slide 12 text

Example Payload JSON { "name": "Luke Skywalker", "height": "172", "mass": "77", "hair_color": "blond", "skin_color": "fair", "eye_color": "blue", "birth_year": "19BBY", "gender": "male", "homeworld": "http://swapi.co/api/planets/1/", "films": [ "http://swapi.co/api/films/6/", "http://swapi.co/api/films/3/", "http://swapi.co/api/films/2/", "http://swapi.co/api/films/1/", "http://swapi.co/api/films/7/" ], "species": [ "http://swapi.co/api/species/1/" ], "vehicles": [ "http://swapi.co/api/vehicles/14/", "http://swapi.co/api/vehicles/30/" ], "starships": [ "http://swapi.co/api/starships/12/", "http://swapi.co/api/starships/22/" 12

Slide 13

Slide 13 text

Working with APIs Product → Design → Engineering 13

Slide 14

Slide 14 text

Excessive Round Trips Client - Server R 14

Slide 15

Slide 15 text

Payload and bandwidth 15

Slide 16

Slide 16 text

/filmsWithDirectorAndTag /filmsWithPrincipalsCharacter /filmSummaries/1 /filmsDetails/1 /filmSummaryWithActors/1 Custom Endpoints 16

Slide 17

Slide 17 text

Versioning my APIs 17

Slide 18

Slide 18 text

Why not like REST? - Most REST API are really Ad-hoc RPC with custom endpoint definitions. Time spent maintaining many versioned endpoint - REST requires many requests - With REST, you request too much or too little data - REST often turns into a maze of poorly-documented endpoints 18

Slide 19

Slide 19 text

19

Slide 20

Slide 20 text

GraphQL isn't a new technology. Facebook: It has been delivering data to mobile News Feed since 2012 20

Slide 21

Slide 21 text

21

Slide 22

Slide 22 text

“GraphQL is a query language designed to build client applications by providing an intuitive and flexible syntax and system for describing their data requirements and interactions.” - GraphQL Specification https://facebook.github.io/graphql/ 22

Slide 23

Slide 23 text

GraphQL is a query language, like SQL? You don’t connect GraphQL directly to your backend or database. It’s an API layer, just like REST. GraphQL can be layered over multiple backends and databases, without the client being aware of where the data is coming from, just like REST. 23

Slide 24

Slide 24 text

Single Endpoint /graphql 24

Slide 25

Slide 25 text

25

Slide 26

Slide 26 text

Query Language Query { me { name } } { "me": { "name": "@durbon" } } 26

Slide 27

Slide 27 text

{ author(id: 27) { name profilePics { width height url } } } { "author": { "name": "@durbon" "profilePics" : { "width": 250, "height": 250, "url": "http://avatarurl.com/250.jpg" } } } Ask for you want 27

Slide 28

Slide 28 text

{ author(id: 27) { name profilePics(size: 640) { width height url } } } { "author": { "name": "Txema Rodríguez" "profilePics" : { "width": 640, "height": 640, "url": "http://avatar.com/640.jpg" } } } Ask for you want 28

Slide 29

Slide 29 text

{ me (id: 27) { name, licPic: profilePics (size: 90){ width, height, url }, bigPic: profilePics (size: 800){ width, height, url } } } "me": { "name": "Txema Rodríguez" "licPic" : { "width": 90, "height": 90, "url": "http://avatar.com/90.jpg" }, "bigPic" : { "width": 800, "height": 800, "url": "http://avatar.com/800.jpg" } } } Ask for you want 29

Slide 30

Slide 30 text

Nested connection resources { me { name posts { title } } } { "me": { "name": "@durbon" "posts" : [ { title: "T3chfest is cool" }, { title: "API REST is dead" }, { title: "GraphQL is powerful" }, 30

Slide 31

Slide 31 text

{ latestPost { title, author { name, twitter } }, authors { name } } { "data": { "latestPost": { "title": "¿Por qué deberíamos abandonar REST y empezar a usar GraphQL en nuestras APIs?", "author": { "name": "Txema Rodríguez", "twitter": "@durbon", } }, "authors": [ { "name": "Txema Rodriguez" }, { "name": "Dummy Blogger" } ] } } 31 Combining Queries

Slide 32

Slide 32 text

32

Slide 33

Slide 33 text

Also you can write using GraphQL Mutation In GraphQL, mutations are the way to allow GraphQL clients(or external parties) to modify your dataset. mutation writePost { post: createPost( title: "GraphQL is Awesome", content: "Yep, it's purely awesome." ) { _id, title } } 33

Slide 34

Slide 34 text

GraphQL Core principles 34

Slide 35

Slide 35 text

Type System GraphQL schema language it's similar to the query language, and allows us to talk about GraphQL schemas in a language-agnostic way. 35

Slide 36

Slide 36 text

Schemas and types - Object types and fields - Scalar types - Arguments - Enumeration types - Lists and Non-Null 36

Slide 37

Slide 37 text

Contract Client Backend Possibilities GraphQL Type System GraphQL Schema Requirements GraphQL Languages Queries Mutation App Server View 37

Slide 38

Slide 38 text

Schema type Query { me: User author (id: Int): Author } type Author { name: String profilePicture(size: Int = 50): ProfilePicture friends: [User] } type ProfilePicture { width: Int! height: Int! url: String! } 38

Slide 39

Slide 39 text

Composition GraphQL includes reusable units called fragments 39

Slide 40

Slide 40 text

Fragments { durbon: developer(_id: "durbon") { _id, name, login }, aracem: developer(_id: "aracem") { _id, name, login }, tylos: developer(_id: "tylos") { _id, name, login }, victor: developer(_id: "ivictorvmp") { _id, name, login } } { durbon: developer(_id: "durbon") { ...developerInfo }, aracem: developer(_id: "aracem") { ...developerInfo }, tylos: developer(_id: "tylos") { ...developerInfo }, victor: developer(_id: "ivictorvmp") { ...developerInfo } } fragment developerInfo on Developer { _id, name, login } 40

Slide 41

Slide 41 text

Fragments fragment authorInfo on Author { _id, name } fragment postInfo on Post { title, content, author { ...authorInfo }, comments { content, author { ...authorInfo } } } { post1: post(_id: "03390abb557) { ...postInfo } } 41

Slide 42

Slide 42 text

TimeLineView HeaderView BodyView fragment headerFragment on User { name profilePicture (size: 250){ url } coverPhoto (size: 1200){ name, url } } fragment bodyFragment on User { location { name } friends } 42 fragment timelineFragment on User { ...headerFragment ...bodyFragment }

Slide 43

Slide 43 text

Introspection Creating documentation, or rich IDE experiences 43

Slide 44

Slide 44 text

IntrospectionQuery query IntrospectionQueryTypeQuery { __schema { queryType { name fields { name description type { name kind } } } } } { "data": { "__type": { "name": "Developer", “Description”: “Name developer” "fields": [ { "name": "id", "type": { "name": null, "kind": "NON_NULL" } }, { "name": "name", "type": { "name": null, "kind": "NON_NULL" } 44

Slide 45

Slide 45 text

Auto documentation Generates API documentation for our consumers, and prevents us from spending precious coding time on documentation. 45

Slide 46

Slide 46 text

46

Slide 47

Slide 47 text

Static validation & IDE Integration 47

Slide 48

Slide 48 text

Code Generation 48

Slide 49

Slide 49 text

Execution After being validated, a GraphQL query is executed by a GraphQL server which returns a result that mirrors the shape of the requested query 49

Slide 50

Slide 50 text

Database “Microservices” Remote Services whatever your tech stack Your existing code GraphQL Execution 50

Slide 51

Slide 51 text

51

Slide 52

Slide 52 text

Think in Graph, not endpoint Fields independently of each other. Apply different context in order to retrieve such data 52

Slide 53

Slide 53 text

Function Resolver Each field on each type is backed by a function called the resolver which is provided by the GraphQL server developer When a field is executed, the corresponding resolver is called to produce the next value. 53

Slide 54

Slide 54 text

54

Slide 55

Slide 55 text

55

Slide 56

Slide 56 text

56

Slide 57

Slide 57 text

57 where we can begin?

Slide 58

Slide 58 text

58 GraphQL.org

Slide 59

Slide 59 text

Draft RFC Specification for GraphQL https://facebook.github.io/graphql/ 59

Slide 60

Slide 60 text

Reference implementation of GraphQL https://github.com/graphql/graphql-js 60

Slide 61

Slide 61 text

Wrapping a API REST 61

Slide 62

Slide 62 text

Javascript Python (graphene) Scala (sangria) Ruby Java Clojure Go PHP C# .NET Elixir Swift …. graphql.org/code/ 62

Slide 63

Slide 63 text

Client library 63 Relay React iOS Android

Slide 64

Slide 64 text

Public GraphQL APIs 64 Early Github GraphQL API https://developer.github.com/early-access/graphql/explorer/ SWAPI http://graphql.org/swapi-graphql/ More APIs https://github.com/APIs-guru/graphql-apis

Slide 65

Slide 65 text

Benefits of Exposing Data Through GraphQL - Boost your client development - Combining and Querying Data - Picking Your Payload - Single source of truth - Auto documentation. YEah!!! 65

Slide 66

Slide 66 text

A new scientific truth does not triumph by convincing its opponents and making them see the light, but rather because its opponents eventually die out, and a new generation grows up that is familiar with it. — Max Planck Are RESTful APIs dead? 66

Slide 67

Slide 67 text

@durbon 67 Thanks, #T3chFest2017!