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

Articles

Why We Chose GraphQL for the Catio Console

In "Why We Chose GraphQL for the Catio Console" by Matt Kharrl shares his team's experience in selecting GraphQL as the API technology for their Catio application. The article highlights the benefits of using GraphQL, including its ability to simplify complex data relationships and provide a more intuitive query mechanism. Matt notes that GraphQL allows for a more flexible and scalable architecture, making it an ideal choice for building a robust and performant API. Additionally, he emphasizes the importance of schema-driven development, which enables developers to define the structure of their API upfront, ensuring consistency and reducing errors.

Hard-Earned Lessons on DDD, NDD, & GraphQL from a Battle-Tested Architect

Mike Dyer reflects on his experience applying Domain-Driven Design (DDD), Narrativ-Driven Development (NDD) principles, and GraphQL to complex software systems. Mike shares valuable insights on how to effectively model business domains, emphasizing the importance of identifying and separating core and supporting subdomains. He also highlights the benefits of using GraphQL for querying complex data models, citing its ability to simplify API development and improve performance. Additionally, he discusses the challenges of integrating GraphQL with DDD and NDD principles, offering practical advice on how to overcome common pitfalls and achieve a more scalable and maintainable architecture.

GraphQL with Azure Functions

Sachin Nandanwar explores the combination of GraphQL and Azure Functions to build scalable and efficient APIs. Sachin demonstrates how to integrate GraphQL with Azure Functions using the GraphQL Server library, highlighting its ease of use and flexibility. He also shares best practices for handling errors, implementing authentication and authorization, and optimizing performance in this setup. The article provides a step-by-step guide on building a simple GraphQL API using Azure Functions, making it an excellent resource for developers looking to leverage the strengths of both technologies.

Events

GraphQL SF Meetup #4, Sept 5

The San Francisco GraphQL community is back for the 2nd meetup of 2024! Join them at the Hasura office on 5th Sept for awesome talks about Federation and more.

GraphQL Conf 2024 is happening next month at San Francisco!

GraphQL Conf 2024 is happening in one month! This year is better than ever. Notable talks: A panel about the future of Federation from Apollo, ChilliCream and The Guild, talks about how Meta scales GraphQL, How GraphQL is used by the House of Representatives and many exciting hands-on workshops! Packed schedule by speakers from Meta, Apollo GraphQL, IBM, Intuit, Google, Netflix, Pinterest, Atlassian, booking.com, Toast, Hasura, Wundergraph, ChilliCream, The Guild, and others. Get your ticket today!

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.