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

Articles

OAuth2 authentication for GraphQL in Node.js

If you’re looking to secure access to your GraphQL APIs with OAuth2, make sure to read this article by Bruno for a helpful guide on implementing this using Node.js.

10 Decisions Stellate Made Around Opening Up Their GraphQL API

Stellate recently announced their open GraphQL API, giving anyone full access to integrate with their platform. In this blog post, they share how they went from an internal GraphQL API used by the dashboard only to having a public version usable by everyone in just two weeks.

Build flexible GraphQL APIs by treating the schema like a database

In this post, Jens shares a new Architecture pattern for building flexible GraphQL APIs. By treating your GraphQL Schema like a Database, you can build use-case agnostic and flexible GraphQL APIs.

Videos

Code-first GraphQL with Pothos

Learn to build a GraphQL schema with Pothos using the "code-first" approach. Pothos is a plugin-based GraphQL schema builder for TypeScript. Pothos comes with a huge collection of plugins, but there's nothing needed to get started to benefit from type-safety than Pothos itself.

Podcasts & Shows

Abhi Aiyer on Getting into Coding, Finding Mentors, Jumping into Engineering, Impostor Syndrome & more

Abhi Aiyer is not only this podcast’s co-host but also the Principal Software Engineer / Tech Lead at Gatsby. He has many years of experience in the architecture, design, and development of software and tools for startup companies. He has worked on high-profile digital websites for popular US Athletes. Nowadays, Abhi is changing how engineers build on the web at Gatsby.

Events

GraphQL Summit | Oct 3-5, San Diego, CA

GraphQL Summit is back for three days of insights, hands-on learning, and fun to celebrate the GraphQL community. Tickets are still available and we’d love to see you there!

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.