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

Articles & Videos

Relay: State of the State

These are super exciting news about the state of Relay. Joseph Savona summarizes the advancements in Relay over the last few months and gives an overview of what's next in Relay such as a performance-optimized core and more expressive mutations. Oh yes!

Modernize your Angular apps with GraphQL

Uri Goldshtein (or ng-jesus - just kidding...) gives an extensive introduction to GraphQL and how to use it inside your Angular applications using the Apollo client. Definitely check out this video if you're using Angular and are still uncertain whether you'd want to use GraphQL or not.

Versioning an API in GraphQL vs. REST

This article shows the benefits of using GraphQL compared to REST when it comes to API versioning. The following quote nails it: "If you dig out that old iPhone 3GS from your top drawer and fire up the Facebook client, it will likely still work. This is because it already used GraphQL and while there have been plenty changes to the API, the client requests have stayed the same."

Open Source

folkloreatelier/laravel-graphql

Laraval is one of the most popular PHP frameworks out there and it's now easier than ever to expose your data through a GraphQL API using the laravel-graphql module based on the PHP GraphQL implementation.

jwerle/three.graphql

This is probably the most creative use case of GraphQL so far. Joseph Werle created a little tool that let's you build and render ThreeJS scenes using GraphiQL. Absolutely brilliant!

Community

Your GraphQL talk at React London

The React London meetup is currently looking for speakers about GraphQL. Maybe that's something for you?

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.