Best of GraphQLDecember 2021

  1. 1
    Article
    Avatar of logrocketLogRocket·4y

    Best Node.js CMS platforms for 2022

    CMSs enable people without a strong technical background to publish content. There are different type of CMSs that perform different purposes and come with different features. In this article, we will learn about some of the best Node.js CMSs to use in 2022, and hopefully can serve as a guide to choose the best CMS that fits our requirements.

  2. 2
    Article
    Avatar of devtoDEV·4y

    Why I no longer use GraphQL for new projects

    GraphQL provides a lot of flexibility on the client side but this means that we cannot optimize as aggressively on the server. Traditional REST API is familiar to many engineers. It's one extra thing someone has to learn before they can be productive. There is an argument that we should just start off with GraphQL if that's ultimately where we want to get to.

  3. 3
    Article
    Avatar of supabaseSupabase·4y

    Five more things

    PG_graphql is a work-in-progress native Postgres extension adding GraphQL support. The extension keeps schema generation, query parsing, and resolvers all neatly contained on your database server. All requests are routed through global network of more than 250 cities. We're kicking off the "Holiday Hackdays" (loosely inspired by the 12th day of Christmas)

  4. 4
    Article
    Avatar of awstipAWS Tip·4y

    Serverless Architecture Tech To Begin With

    When a device is offline, your customers should be able to continue to use your application, not only to access data but also to create and modify them. When the device comes back online, the application must reconnect to the backend, synchronize the data and resolve conflicts, if any. AWS A mplify with AppSync allow us to create web app quickly with built-in support for API, Authentication, and other basic services that most apps need.

  5. 5
    Article
    Avatar of guildThe Guild·4y

    GraphQL Code Generator with TypeScript and Prisma models

    GraphQL has some amazing tools that can make your life easier. One of those tools is GraphQL Code-Generator which helps you create types (and more) based on your GraphQL schema. This article covers the process of using Prisma with GraphQL codegen and the configuration flags that will boost your experience.

  6. 6
    Article
    Avatar of logrocketLogRocket·4y

    Modern API data-fetching methods in React

    React beginners might wonder, “What exactly is an API?” To understand what an application programming interface (API) is, let’s think of an application where a section displays the daily weather forecast of the present city. With the API, we don’t need to create everything from scratch, simplifying our process.