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

Articles

Supercharging Development at Salsify with GraphQL

Erik shares insights from Salsify’s use of GraphQL, what conventions and rules they have in place, how they deal with breaking schema changes, and how this helped create a better developer experience for their teams.

Creating a GraphQL Server With Node.js

If you are new to GraphQL and are just getting started, make sure to read Derek's article on how to create a simple GraphQL Server with Node.js.

Pagination In Lighthouse GraphQL

Are you using PHP and Lighthouse for your GraphQL API? Do you want to add pagination? Tanmaya’s article can help get that done quicker.

Tools & Open Source

Pothos GraphQL

Photos, formerly GiraphQL, is a plugin-based GraphQL schema builder for TypeScript. It simplifies building your GraphQL schemas, doesn’t add overhead at runtime, and only requires the GraphQL TypeScript library. If you’re already working with TypeScript, make sure to give it a try.

Videos

GraphQL Schema Mocking with GraphQL Tools

Jamie Barton’s great graphql.wtf is back with an episode on how to speed up building your frontends with schema mocking. If that’s something you wanted to look into, make sure to watch his newest episode. And if not, we’d recommend watching it nonetheless.

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.