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

Talks

Building a real-time Q&A app using GraphQL by Gerard Sans (~30 min)

In this talk, Gerard Sans presents his experience building a real-time Q&A app for conferences and meetups. The app uses GraphQL Subscriptions from Graphcool as well as Apollo & React on the frontend.

Give it a REST: A GraphQL Intro by Brian Douglas (~38 min)

Brian Douglas gave a fantastic introductory talk to GraphQL at the San Francisco ForwardJS Meetup. He covers all the relevant basics and has many pointers to helpful tools and resources to get you started!

Articles

Dive Into GraphQL (5 Parts)

Here is a 5-part series of excellent articles (including practical tutorials for frontend and backend) for you to get started with GraphQL. Francois Zaninotto and Gildas Garcia have done a great job putting together everything you need to know about GraphQL. Great content for GraphQL newcomers and veterans!

GraphQL Schema Stitching

GraphQL schema stitching is the idea to merge different schemas and allow to combine and nest types and fields in specific ways. In this post, the Apollo team lays out their ideas and presents an example that they've been working for how schema stitching can be implemented.

When fragments and React components join forces

In this article, Brandon Wang (founder of Conduit) shares their experience of using GraphQL in production. He specifically discusses the role of GraphQL fragments when combined with React.

Tutorials

andreas/ocaml-graphql-tutorial

Interested in using GraphQL with OCaml? Andreas Garnæs has you covered! This GitHub repository contains the materials from his talk at CUFP, a functional programming conference, including slides and exercises to get you started with GraphQL and OCaml.

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.