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

Articles

2025 is the year of GraphQL error handling!

GraphQL servers must support the new application/graphql-response+json content type. This seemingly small update solves a long-standing pain point in error handling, allowing clearer distinction between GraphQL and non-GraphQL server responses. Learn why this matters for your production apps and how it puts an end to the "everything is 200 OK" memes.

Events

From Schema to Code: Auto-Generating Types with GraphQL

Netflix's Shaundai Person shows how to automate TypeScript type generation from GraphQL schemas, eliminating manual updates and improving developer experience through GraphQL Code Generator.

Tools & Open Source

Open Source GraphQL Explorer

Inigo’s GraphQL Explorer is now open source. Built to make GraphQL development smoother and more efficient, it’s now available to the community on GitHub.

Videos

Techniques to Protect Your GraphQL API

rom API vulnerabilities to battle-tested protection strategies, discover how to shield your GraphQL servers against threats. Language-agnostic best practices explained.

GraphQL as a Data Mesh Access Layer in Global Banking

Discover key insights about GraphQL's performance in a highly regulated, federated financial ecosystem and whether it truly delivers as an enterprise API platform.

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.