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

Articles

State of GraphQL 2022 Survey Report Summary and Insights

Continuing with insights from the State of GraphQL survey, Hasura released their report summary and insights, which are a fantastic read, whether you are a user of their products and services or not.

Implementing GraphQL API Gateway in .NET 6 + Hot Chocolate v12 + Redis

If you want to start looking into federation and schema stitching and are using .Net and Hot Chocolate, Diego Pereira has the perfect guide for you. He’ll show you how to get started and guide you through the setup of a GraphQL API Gateway using federation to make multiple backend APIs available via a single GraphQL schema.

SDL or Code-first GraphQL Schemas?

Whether to build GraphQL schemas directly using the GraphQL SDL or by using code has been a debate since GraphQL’s inception. We’re in 2022, and things haven’t changed much. Marc-André Giroux looks into both options and explores the advantages and shortcomings of each so that you can make a well-informed decision.

Tools & Open Source

DociQL

DociQL is a documentation generator for your GraphQL API. It automatically creates beautiful HTML documentation based on your schema (via Introspection). And while the defaults will be good enough for many of you, it provides an extensible platform to generate the perfect documentation your project requires.

Videos

Rate Limiting with GraphQL Yoga

Rate-limiting is a topic that comes up regularly in conversations with GraphQL teams. In this week's episode of graphql.wtf Jamie Barton explores how to implement user-based rate limits with GraphQL Yoga and Envelop.

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.