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

Articles

Introducing Merged APIs on AWS AppSync

If you're into app development, you'll want to check out this cool new feature on AWS AppSync. The latest update introduces merged APIs, allowing you to combine multiple data sources into a single GraphQL endpoint. It simplifies your backend architecture and boosts efficiency. Say goodbye to managing separate APIs and hello to seamless integration. Get the lowdown on how merged APIs work and how they can level up your app development game.

Day 21: Building an MVP – signup flow and GraphQL

Ever wondered if ChatGPT can help write your GraphQL resolvers for you? You're in luck! This insightful article takes you through Day 21 of a comprehensive series, where the author dives into creating an MVP signup process using GraphQL. From handling user authentication to integrating GraphQL mutations, you'll gain practical knowledge and actionable tips. Get ready to level up your MVP game and streamline your user onboarding experience. Let's get coding!

Learn how to use Modularization with GraphQL Modules

In this informative article, the author explores the power of GraphQL Modules and teaches you how to effectively structure and organize your GraphQL schemas, resolvers, and more. Discover how modularization can enhance maintainability, scalability, and code reusability in your GraphQL applications. Get ready to level up your GraphQL game with this practical guide. Let's dive in and start building!

Tools & Open Source

nitrogql

nitrogql is a toolchain for using GraphQL with TypeScript. It can generate TypeScript types from your GraphQL schema and queries and also provides static checking for your queries.

Videos

Tools every frontend developer should be using with GraphQL in 2023

Check out Jamies recommended top 5 tools you should be using as a frontend developer in 2023 when working with GraphQL.

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.