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

Articles & Videos

GraphQL :: A data query language

A neat introduction for GraphQL and Relay stressing the strengths of GraphQL over REST. We especially like the conclusion: If you want to explore GraphQL more, get your hands dirty with this. That's the spirit!

Improving Performance with Apollo Query Batching

This is a great article that shows how to add transport-level Query Batching for Apollo Client in a few simple steps to significantly improve performance of complex applications. Additionally, you can use Query Deduplication to remove duplicates in batched queries. If you use Apollo Client already, then you should follow along the article to benefit as well!

Open Source

graphql/graphql-js

The updated version of the GraphQL reference implementation for Javascript comes with a bunch of new smaller and bigger features - notably, flow types version 0.38 is now supported. The graphql-relay-js package has also been updated to the latest GraphQL version.

ads1018/next-apollo-example

A great example showcasing how to combine Next and Apollo to get the best out of two worlds. Deployed with now and built with @graphcool, this example definitely brings all the hype together. Great work by @adamSoffer!

Community

Save the Date: Apollo Contributor Week

Be ready for the Apollo Contributor Week this February! Hack together with Apollo's core contributors, contribute to awesome open source projects and level up your open source karma in general - everyone who likes to join is invited!

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.