REST has become the de-facto standard for web APIs. However the constraints imposed by the standard sometimes make it hard to work with. What if you want to get a list of all posts written by a user and all friends of that user that liked the post? In REST this means hitting at least 4 different API endpoints. In GraphQL, a new approach to interacting with an API, this same operation could be done with only one request! In this webinar we will go over the general structure of GraphQL, key differences to REST and then look at a client-server example implementation to see hands-on how the same use case looks like in REST and GraphQL.