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

Videos

A tasty introduction to GraphQL (17 min)

Metaphors are one of the most helpful tools for understanding abstract, technical concepts. In this video, Gregor Martynus gives an excellent introduction to GraphQL using the metaphor of a buffet restaurant.

React Native & GraphQL Tutorial (Video series)

Ben Awad has created a fullstack tutorial video series, explaining how to build a fully-featured eCommerce app with React Native and GraphQL. Watching the videos is a magnificent learning experience for beginners as well as for more advanced GraphQL developers!

Community

GraphQL NYC Meetup

The biggest GraphQL Meetups in the US (NYC and San Francisco) are back with their first events in 2018. The east coast has two great talks lined up: "Introduction to Urql, a new JS GraphQL client" (by Kurtis Kemple) and "Efficiently exposing REST APIs with GraphQL and Flow" (by Jimmy Jia).

JAMstack Radio with Co-Founders of Graphcool / Prisma (Podcast)

In this episode of the JAMStack Radio podcast, the guests are Johannes Schickling and Søren Bramer Schmidt, co-founders of Graphcool/Prisma. They discuss the evolution of GraphQL, the communities that surround it and its use in production.

Articles

Prisma Cloud Preview (invite-only)

This week, the Prisma team announced Prisma Cloud - an easy way for using Prisma in production without worrying about infrastructure management and complicated DevOps workflows. You can apply for the invite-only preview of Prisma Cloud today.

A Look At GraphQL Clients For React Apps

GraphQL clients are used on the frontend to improve the workflows for querying and mutating data against a GraphQL API. In this article, William Lyon compares two popular GraphQL clients for React: Apollo and urql.

Demystifying the `info` Argument in GraphQL Resolvers

Ever wondered what the <code>info</code> object that gets passed into your GraphQL resolvers is actually used for? This article has the answer - a deep dive into the technicalities of the GraphQL query resolution process!

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.