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

Articles

GraphQL and Design Clarity

Dave explores how keeping your GraphQL schema in mind will help when designing and implementing your next feature and how this can help coordinate between various teams working on your application.

Combining Multiple GraphQL Backends with Schema Stitching

Peter shows how Splitgraph uses GraphQL Schema Stitching to provide a single, coherent schema for all of your backend services. He explores how this can make it easier to add new backend services and extend the types and fields offered by others.

Super fast WPGraphQL at Scale with GraphQL Edge Caching at Patronage

Patronage shares their story on how they build 30 to 40 websites per year based on WordPress, WPGraphQL, and Next.js. And how adding GraphQL edge caching to their stack helped reduce traffic to their backend service by 99%.

9 GraphQL Security Best Practices

GraphQL has seen widespread adoption, from the largest corporations to small startups. Achraf shares 9 tips on how to secure your GraphQL APIs.

Videos

Execute Lazy Queries with React Apollo Client

Learn how to execute GraphQL queries lazily in response to events triggered within your application. Jamie guides you through adding support for this to your codebase via the “useLazyQuery” hook within React Apollo Client.

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.