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

Articles & Videos

GraphQL IDL - Schema Definition Language

An informative article about the GraphQL Schema Definition also referred to as IDL. IDL is the most concise way to specify a GraphQL schema and it already powers great tools like GraphiQL. It's high time to learn more about it!

Next.js + React + GraphQL Video Tutorial

This is an incredibly helpful tutorial that sets you up with a React application using Next.js and Graphcool. Following along, you can quickly setup a working university catalog app with GraphQL. The source code is available on Github. We really have to say, great job by @alexedev!

Open Source

Open Sourcing Lacinia for Clojure

WalmartLabs announces the release of Lacinia, a GraphQL implementation for Clojure. The article is an interesting read on the learnings they gained over the last year of using GraphQL in production and how they could solve their problems regarding API evolution and quick development. Welcome to the GraphQL community!

APIs-guru/graphql-faker

Fake it 'til you make it! That's what the @APIs_gurus must have thought when coming up with this project. But the real kicker is that you can extend an existing API with mock data. Time to add some imaginary followers to your GitHub account with this amazing tool!

Community

GraphQL Training in San Francisco

Another training session by the guys over @okgrow coming in. This is your chance for a full day of GraphQL joy where you will learn all the tricks and secrets behind GraphQL. Make sure to grab your early bird ticket until March 31st and join in on the fun!

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.