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

Tools & Open Source

alechp/graphql-query-factory

The GraphQL Query Batcher, an interesting project by Alec Hale-Pletka, allows you to easily create and batch GraphQL queries and mutations. This is especially great if you're using similar queries with different variables or for other use cases like testing.

Relay DevTools for Chrome

A new version of the Relay DevTools Chrome Extension has been released, it supports up to Relay v1.4.

Introducing GraphQL Playground

GraphiQL is an amazing tool that lets you explore your GraphQL API in an interactive manner. Last week, the Graphcool team took GraphiQL to a new level, building a fully-featured GraphQL IDE on top of it: GraphQL Playground! Some of its top features are:
• Sharing queries and mutations
• Code generation, e.g. for Apollo Client
• Improved API documentation
An indispensable asset in every GraphQL developer's toolbox!

Community

Announcing Sessions & Diversity Program for GraphQL Summit 2017

GraphQL Summit is just around the corner and the full speaker lineup has now been announced, make sure to grab your ticket! There's also a diversity program that's organized in partnership with GitHub. You can apply using this form. Note that Peggy from the Apollo team offered to review your applications, definitely something you should take advantage of in case you consider applying!

Relicensing the GraphQL specification

Big news for the GraphQL community! A month after Dennis Walsh created a huge buzz around the licensing of GraphQL with his post Using GraphQL? Why Facebook Now Owns You!, Facebook now reacted to the critique and relicensed the GraphQL specification under the Open Web Foundation Agreement (OWFa) v1.0.

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.