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

GraphQL Community

Learn Documentation Update, October - November 2024

The GraphQL Foundation's Learn documentation received a significant update through their Community Grant program. The refresh includes new pages for core concepts like Queries and Mutations, expanded Security and Performance best practices, and improved HTTP guidelines

GraphQL Community

Schema Stitching 101 with GraphQL Tools

Cassidy Scheffer wrote a workshop to help people build an understanding of the basics of schema stitching. Follow the link to the GitHub repository, and you'll learn how to merge types, stitch queries across services, and prevent n + 1s.

GraphQL Community

Supporting Contributors: The GraphQL Community Grant Program Refresh

The GraphQL Foundation is thrilled to announce significant updates to our Community Grant Program, now more streamlined and aligned with the foundation's core projects!

GraphQL's Original Syntax

A tidbit from the GraphQL history books. Prior to it's public release, GraphQL used a different syntax. If you want to know what it looked like, check out this thread on X/Twitter!

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.