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

Articles

NX: Integration testing Apollo GraphQL and MongoDB Mongoose with Jest

This article will teach you how to create integration tests for a microservice built with Apollo Server Express and MongoDB Mongoose.

Implement Relay Cursor Connections Specification in NestJS with GraphQL Relay

Pagination in GraphQL can be a pain to implement, especially if you don't have a good architecture in place. This article will show you how to create a simple interface that will make pagination easier for you.

How to Build a Photo Sharing App with Nuxt 3, GraphQL, Cloudinary, Postgres and Strapi

This tutorial will show you how to set up a Headless CMS using a Strapi backend with PostgreSQL as the database and Cloudinary for image uploads. We'll also look into using Nuxt 3 for our frontend, which has SSR support and is compatible with Vue3.

Tools & Open Source

Grafbase: Instant serverless GraphQL backends

Grafbase is a platform that makes it easy for developers to build GraphQL backends. Grafbase combines GraphQL, serverless technology, and edge computing to make it easy for you to develop your backend without spending time on infrastructure.

Videos

GraphQL Observability, Michael Staib at NDC Porto

GraphQL is a great way to make your APIs accessible, but you must be prepared for maintenance and performance issues. By using OpenTelemetry and Elastic Observability, you can track the performance of your GraphQL APIs so that you can address any problems before they become big problems.

GraphQL Subscriptions with Server Sent Events

GraphQL Subscriptions let you know when data changes, and GraphQL Yoga can help with using Server Sent Events to send the data changes to your app.

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.