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

Articles

Using GraphQL Playground with Gatsby

In this article, Adebiyi Adedotun guides you through the steps needed to switch the default GraphiQL IDE to GraphQL Playground while developing with GatsbyJS. GraphQL Playground provides features to further help with development, such as automatic schema reloading, multiple tabs, and query history.

Nullability in GraphQL

This article goes over the best practices on how to properly use Nullability in GraphQL. When used properly, Nullability allows for further resiliency, graceful UI degradation, frictionless user workflows, and more.

Why GraphQL Performance Monitoring is Hard

Do you struggle monitoring performance with GraphQL? You aren’t the only one. This article explains why it can be a challenge, and offers some alternative approaches to monitor properly, as well as provides suggestions on how to detect anomalies.

Tools & Open Source

graphql-zeus

GraphQL Zeus is a powerful tool built by the team at GraphQL Editor. Zeus provides an autocomplete client library for Javascript and Typescript. Learn how to use and install Zeus for your projects in this GitHub repo.

Videos

Next Generation Intelligent Data Lakes, Powered by GraphQL

This interesting video discusses how GraphQL can easily connect and access data stored on any type of database technology or API. Ed Lima describes the different use cases where AWS AppSync and GraphQL power next-generation applications. Lastly, Candid Partners, shares how it uses AWS AppSync in its Data Fabric solution to simplify large-scale data management using a GraphQL API to interact with data lakes.

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.