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

GraphQL Community

Learn Documentation Update, October - November 2024

The GraphQL Foundation's Learn documentation received a significant update through their Community Grant program. The refresh includes new pages for core concepts like Queries and Mutations, expanded Security and Performance best practices, and improved HTTP guidelines

Articles

DRY in GraphQL: How the Type Similarity Linting Rule Keeps Your Schema Clean

Reducing repetition and ensuring every piece of information is represented clearly and uniquely.

Why Your Client Types Should Derive from Queries and Fragments — Not the Schema

Loren from Netflix shares why client-side typegen should be based on your client documents (operations & fragments) instead of the schema.

Tools & Open Source

Improving the Modus Developer Experience with Integrated API Tools

The open-source Modus AI API framework recently added an integrated GraphQL API explorer that improves the developer experience of building GraphQL APIs with Modus as well as a feature to extract JSDoc and GoDoc documentation strings from Modus functions and annotate the generated GraphQL schema documentation.

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.