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

Tools & Open Source

Introducing GraphiQL Explorer 2.0

Introducing GraphiQL Explorer 2.0! Check out the new visual updates to schema fields and the multi-operation support that allows for multiple queries, mutations, and subscriptions simultaneously. Learn more about additional features in the sample GraphiQL playgrounds available in the article.

Urql, Grown Up

This blog post announces the newest features of the minimalist GraphQL client urql. Urql provides a way to customize and augment your GraphQL client, from how data is cached to how components receive data. The post includes their motivations for the project and details how they rebuilt the core of the library.

graphql-user

Graphql-user is a simple library providing reusable functions to help add authentication to your GraphQL API. This package is powered by bcrypt and jsonwebtoken.

Articles

A Year of Large Scale GraphQL - The Biggest Takeaways

This interesting article discusses the results of implementing GraphQL at scale. Peter Nycander shares the lessons he learned and his experience with GraphQL design, server side caching, mutation types, and schema stitching.

Videos

Building Modern APIs with GraphQL

A detailed talk, by Robert Zhu from the AWS Summit 2019, that breaks down modern API design challenges with GraphQL. A demo link is provided to follow along as he explains how GraphQL is implemented on the client and server side.

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.