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

Articles

Extending your GraphQL service: Federation or Schema Stitching

Learn how schema stitching and federation can help scale your GraphQL services across distributed architectures. This technical overview compares these two popular approaches for combining multiple GraphQL schemas into a unified API.

Inigo: GraphQL Schema Checks with GitHub Actions

View composition errors, linting issues, and breaking changes directly in GitHub with Inigo's GraphQL Schema Checks GitHub Action.

Events

GraphQL SF Meetup #6

Join the GraphQL SF community for a meetup on Dec 3rd, featuring Robert Balicki, Staff Engineer at Pinterest. He'll dive into "Doing the Bare Minimum with Isograph," exploring how this framework optimizes React app performance by minimizing bloat while delivering a seamless DevEx. Enjoy networking before and after the talk with fellow developers. Seats are limited—register now to secure your spot!

Videos

30 Lessons from Scaling GraphQL to Half a Billion Requests per Minute

Journey from 1k to 500M requests: How one startup scaled their GraphQL implementation across 1000+ engineers, featuring their new open-source solution for building high-performance GraphQL APIs.

GraphQL at the Edge with WebAssembly

Discover how WebAssembly and GraphQL unite for edge computing. This talk demonstrates building a Rust-based GraphQL server that targets WebAssembly, showcasing how this combination optimizes performance at the edge while reducing latency and costs.

In Memory of Travails

Learn how to optimize GraphQL resolver performance by tackling memory usage and execution overhead. This case study from Auction.com shows how they improved latency for complex queries handling 500 items with 80 fields each, including strategies for efficient real-time updates via Kafka.

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.