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

Tutorials

Intro to GraphQL in React Using React Apollo & Apollo Boost

alligator.io is known for the great frontend tutorials on their site! This tutorial is a thorough introduction to using React together with the apollo-boost package.

Render Props in React Apollo 2.1

The new render props API in React Apollo 2.1. is all the hype right now. Learn how to use the new <code>Query</code> and <code>Mutation</code> components in this comprehensive tutorial.

Updated Node.js tutorial on How to GraphQL

The Node tutorial on How to GraphQL recently saw a major update. If you want to learn how to build GraphQL servers entirely from scratch, be sure to check it out!

Articles

LoadMore with GraphQL and Apollo

Radoslav Stankov shares some of his experience from the time when he introduced GraphQL at Product Hunt. This article is about how to reduce boilerplate code when needing to load more data with Apollo.

Podcasts

My JavaScript Story with Johannes Schickling (Podcast)

Tune in to this episode of the My JavaScript Story podcast to learn how Johannes Schickling, founder and CEO of Graphcool/Prisma, got into programming and what he did before working with GraphQL (spoiler: building REST APIs with PHP).

React Round Up with Nikolas Burk (Podcast)

In this episode of the React Round Up podcast, Nikolas Burk discusses the differences between Graphcool and Prisma.

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.