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

Articles & Videos

GraphQL Concepts Visualized

Sneak an in-depth look at the application data graph and how it enables the Apollo Client to efficiently cache query results. Reasoning in graphs greatly increases your understanding of the data structure for your app, so you should definitely check this article!

Using DataLoader to batch requests

Learn how to effectively use Facebook's DataLoader to increase your query times! Query batching is a powerful technique to combine multiple data requirements in one query, in contrast to executing one query for every single data item.

Open Source

edvinerikson/relay-subscriptions

Subscriptions will be the next big thing for GraphQL. Check this helper library from @edvinerikson to use subscriptions right now in Relay. This is awesome! Can't wait for more news on this.

graphql/graphql-js

The latest release 0.7.0 of the GraphQL reference implementation in Javascript just hit the store! It comes with new utility methods, bug fixes and a also some new stuff. If you use it in production, carefully read the changes as two breaking changes are included.

theotow/keystone-graphql

A Hackernews clone with the CMS KeystoneJS built on top of GraphQL. Sweet!

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.