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

Articles

Relay-style GraphQL

Are you looking for a comprehensive guide to Relay-style GraphQL? Look no further! This article dives into the ins and outs of Relay, providing a clear understanding without overwhelming the reader. So, if you're curious about optimizing your GraphQL data-fetching experience, take a casual stroll through this informative piece.

Key Insights from the GraphQL EU Gathering

Hey there, curious about the latest happenings in the GraphQL world? The GraphQL EU Gathering was a blast, and this article covers all the key insights from the event. From intriguing discussions on best practices to exciting updates on GraphQL implementations, it's a must-read for anyone in the GraphQL community. So, grab a cup of coffee and dive into this informative roundup!

Supercharge your application development with Hasura Remote Joins and Data Federation

Ready to level up your application development game? The Hasura blog has got you covered with an insightful article on supercharging your projects using Hasura's remote joins and data federation. Explore how these powerful features can enhance your app's capabilities and streamline your development workflow. Whether you're a seasoned developer or just starting, this read promises valuable tips and tricks to take your applications to the next level. Happy coding!

Normalized GraphQL Documents

This specification intends to formalize a method of normalizing any GraphQL document. This includes both executable documents as well as type system documents. Two documents that generate the same execution result or that describe the same GraphQL schema will generate the same output when following the normalization procedures defined by this specification.

Tools & Open Source

PostGraphile V5 public beta!

Hey, devs! Want to get involved in the latest PostGraphile v5 public beta? This article is your ultimate guide. Discover the new features, improvements, and optimizations offered in this release. Get insights into how you can actively participate in testing and shaping the final version. So, if you're a PostGraphile enthusiast or just curious about the latest updates, hop in and join the beta adventure! Your feedback matters, so let's make this version the best it can be.

Videos

GraphQL list query naming conventions

Let's talk about some of the most common ways you can name list queries.

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.