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

Articles

How to Use Mocks in Your GraphQL Development Workflow

We've shared articles about mocks with GraphQL in the past. This time, Lucia Cerchie guides us through implementing this with StepZen's @mock directive.

Using WordPress as a Headless CMS With React as the Frontend

Headless CMS are pretty popular right now. This article explains the steps necessary to use WordPress and the WPGraphQL plugin as a headless CMS for your Next.js project.

How to Build a GraphQL server with NodeJS and Express

Being able to work with APIs and write queries is crucial to any developer’s skill set. In this article, you’ll set up your own GraphQL server with Node.JS and write a few queries to gain insight into how GraphQL works.

Videos

Type safe GraphQL server context

In this week's installment of graphql.wtf Jamie Barton dives into using the TypeScript Resolvers Plugin for GraphQL Code Generator to make your GraphQL server type-safe.

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.