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

Articles

Apollo Connectors: Blazing-Fast Integration with REST APIs

Apollo Connectors simplify the process of building a GraphQL API by seamlessly integrating non-GraphQL services. With a straightforward declarative syntax embedded directly in your schema files, developers can effortlessly link GraphQL fields to HTTP APIs.

More expressive schemas with @oneOf

In this post, Benoit discusses the @oneOf directive, explaining how it brings polymorphism to input types and its current experimental support in Apollo Kotlin v4. Discover how this feature can improve your GraphQL schemas by allowing mutually exclusive fields and enhancing type safety.

Maximizing PIM Efficiency with GraphQL APIs

Explore how GraphQL APIs can maximize PIM efficiency by enabling flexible data queries and reducing over-fetching. This approach streamlines product data management, making it easier to integrate with multiple front-end applications. Checkout the full article for more details.

Tools & Open Source

GraphiQL v4 Alpha is Live in Action

Check out how the GraphQL Hive team is utilizing the latest tabs interface and plugins to enhance the GraphQL experience. Their contributions are making a significant impact by giving back to the community!

Announcing Keycloak GraphQL API

Keycloak GraphQL offers a GraphQL interface for the Keycloak Admin REST API. Inspired by challenges faced while building a user management system, this project aims to improve data querying efficiency. Currently in its early stages, it is not suitable for production. Feedback on its usefulness and repository structure is welcome.

Videos

Apollo GraphQL Summit 2024 Keynote - Matt DeBergalis, Co-founder and CTO

Check out this exciting keynote from Apollo GraphQL Summit 2024! Discover the latest innovations and see how industry leaders like CVS Health and their partner MongoDB are unlocking enterprise value for intelligent applications and APIs.

A Wild GraphQL Rollercoaster Ride – an Honest Federated GraphQL Adoption Story in an Enterprise

Discover the experience of Bol.com in adopting GraphQL, where the team tackled the challenge of implementing federated GraphQL in a distributed microservices landscape with over 800 engineers primarily focused on REST. This journey involved not just technical hurdles, but also shifting work practices, building expertise, and nurturing a strong GraphQL community among engineers and product teams. They will share valuable lessons learned and insights to help others navigate their own GraphQL adoption journey at scale.

Getting Data Ready for AI - With Unified GraphQL &SQL Endpoints - Anushrut Gupta, Hasura

Join Hasura for a workshop on preparing robust data foundations for AI technologies like LLMs. Learn how to consolidate data and business logic under one interface using GraphQL (or SQL) and implement consistent authorization for secure AI applications. Discover how to create powerful data connectivity to meet the demands of advanced AI.

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.