Best of GraphQLJuly 2023

  1. 1
    Article
    Avatar of prettierPrettier·3y

    Prettier 3.0: Hello, ECMAScript Modules! · Prettier

    Prettier 3.0: Hello, ECMAScript Modules! We are excited to announce the release of the new version of prettier. This release also includes numerous formatting improvements and bug fixes. We'd like to extend our gratitude to Tatsunori Uchino, who has made significant contributions toprettier.

  2. 2
    Article
    Avatar of amplicationAmplication·3y

    How to Build a Node.js GraphQL API With NestJS and Prisma

    NestJS and Prisma are a great couple that can provide exactly that. NestJS is a powerful framework specifically designed for building Node.js applications. Prisma is an open-source database toolkit that provides tools and features to simplify database access. Amplication Amplication can automatically generate entities for your database models if you prefer.

  3. 3
    Article
    Avatar of amplicationAmplication·3y

    Best Practices in Testing GraphQL APIs

    GraphQL is an open-source data query and manipulation language that revolutionizes how applications interact with APIs. With GraphQL, users can request specific data they need and receive only that data in response. This article provides an overview of GraphQL and highlights five best practices for testing GraphQL APIs.

  4. 4
    Article
    Avatar of amplicationAmplication·3y

    Create API with GraphQL, Prisma, and MongoDB

    Create API with GraphQL, Prisma, and MongoDB Jump to GraphQL Prisma MongoDB Amplication. Amplication is an open-source platform that automatically generates APIs and clients based on pre-defined data models. It streamlines the development process by minimizing repetitive coding tasks and boilerplate code.

  5. 5
    Article
    Avatar of redwoodjsRedwoodJS·3y

    Redwood v6.0.0 is now available

    Redwood v6.0.0 is now available - Releases and Upgrade Guides. The first RedwoodJS in-person conference is September 26-29 in Oregon, USA. The highlight of this major is a new bundler, Vite, Prisma v5, Storybook v7, and a simpler logging experience.

  6. 6
    Article
    Avatar of asayerasayer·3y

    A beginner's guide to your first GraphQL queries

    GraphQL enables declarative data fetching by providing a single endpoint that handles all data requests with just one API call. This single request prevents the need for back-and-forth requests to the server. The query includes several nested fields, and we pass in arguments to get specific data for some of these fields.

  7. 7
    Article
    Avatar of honeybadgerHoneybadger·3y

    Creating GraphQL APIs with Laravel

    GraphQL APIs allow clients to precisely define the data they need and receive it in a predictable and hierarchical format. This allows for more flexible and efficient data fetching and eliminates the need for over-fetching or under- fetching data. By the end of this tutorial, you will have a working GraphQL API that you can continue to expand and improve.