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

Articles & Open Source

Some more advanced GraphQL concepts with HotChocolate

Ready to dive into the world of advanced GraphQL concepts with HotChocolate? Buckle up for a quick dive into this article where we'll explore advanced topics like mutations with arguments, subscription queries, and more. No prior experience with GraphQL is required! Let's dive in and unlock the power of advanced GraphQL with HotChocolate.

GraphQL Subscriptions in NestJS with Apache Kafka, and MongoDB

Are you ready to master GraphQL subscriptions with NestJS, KafkaJS, and MongoDB? This article will guide you through the journey of setting up real-time updates in your application. We'll explore the power of subscriptions, dive into the code with examples, and equip you with the knowledge to build scalable and efficient real-time systems. So, join us and unlock the power of real-time data updates with GraphQL subscriptions!

Unlocking the Potential of GraphQL: A Guide for Engineering Leaders

Looking to unlock the full potential of GraphQL for your team? This article explores the benefits of GraphQL compared to traditional REST APIs, including simplicity, performance, and data consistency. Discover how GraphQL can empower your team to build more efficient and scalable applications. Learn about key concepts like schema design, mutations, and subscriptions, and unlock the future of data fetching with GraphQL.

Tools & Open Source

Yaak

Yaak helps you interact with REST, GraphQL, and gRPC, with web socket support coming soon as well. If you're looking for a new tool like this, make sure to give Yaak a try!

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.