A weekly newsletter of the best news, articles and projects about GraphQL

Articles

GraphQL & Apollo for Angular Developers

GraphQL's biggest tutorial site How to GraphQL just got another tutorial addition! Boubacar Barry from Hackages contributed a frontend tutorial based on Angular and Apollo Client 2.0. Thanks a lot the hard work ?

Apollo Client 2.0: Beyond GraphQL APIs

Here is Peggy Rayzis with an awesome summary of her talk at GraphQL Summit, providing an overview of the new features in Apollo Client 2.0, and the thoughts behind them. If you're curios about the talk, it's already available on video as well.

GraphQL Server Basics: The Schema

Ever wondered about the inner workings and mechanics of a GraphQL execution engine like GraphQL.js? This post covers a lot of ground with regards to the basics of GraphQL servers and in particular the role of GraphQLSchema when building your server. It also highlights the role of graphql-tools and graphene-js in the ecosystem.

Community

GraphQL Summit Videos on Youtube

Talking of GraphQL Summit - all the talks have finally been released on Youtube! A great way for you to catch up about all the news in the GraphQL world.

GraphQL Europe: June 15, 2018 (Berlin)

GraphQL Summit is only a few weeks back and the next big GraphQL conference has been announced. Like last year, GraphQL Europe is happening in Berlin. Save the date: June 15, 2018 and prepare yourself for even more GraphQL awesomeness.

Tools

CRUDL - Easily build an admin interface for your GraphQL API

CRUDL is a JavaScript app for rapidly building an admin interface based on your API — you just define the endpoints/queries and a visual representation to get a full-blown UI for managing your data. This works for REST, but also for GraphQL APIs.

Feeling nerdy? Query issues of GraphQL Weekly, with GraphQL itself!
Powered by the GraphQL Playground
Enter a query
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  allIssues {
    id
    title
    published
    number
    date
    author {
      avatarUrl
      description
      name
    }
  }
}
or press CMD + Enter
Result
Curated by Stellate, and the awesome GraphQL community.