Best of GraphQLMarch 2024

  1. 1
    Article
    Avatar of asayerasayer·2y

    GraphQL vs REST APIs -- The Case Against GraphQL

    GraphQL offers efficient data retrieval, flexibility in queries, reduced number of requests, versioning and backward compatibility, and real-time data with subscriptions. However, it also has challenges in implementation, performance, caching, and security. REST APIs remain preferable in scenarios involving simplicity, statelessness, caching, limited bandwidth, and a mature ecosystem. Transitioning to GraphQL requires consideration of the learning curve, schema design and migration, updating client-side implementations, backend adjustments and resolvers, and performance considerations. The decision depends on factors such as data complexity, scalability requirements, team expertise, data fetching efficiency, project scope and complexity, tooling and ecosystem support, and long-term maintainability.

  2. 2
    Article
    Avatar of lobstersLobsters·2y

    What is this architecture called?

    The post discusses a different architecture than the classical three-tier architecture, focusing on the presentation tier, logic tier, and data tier. It also explores the bifurcation of the logic tier's server into hot path categories.

  3. 3
    Article
    Avatar of infoqInfoQ·2y

    Uber Builds Scalable Chat Using Microservices with GraphQL Subscriptions and Kafka

    Uber builds a scalable chat using microservices with GraphQL subscriptions and Kafka, replacing the legacy architecture to improve reliability, scalability, and maintainability.