Best of React QueryMay 2023

  1. 1
    Article
    Avatar of tkdodoTkDodo·3y

    You Might Not Need React Query

    React is still just a library to render components, but with Server Components, it now offers a new application architecture where you can render them ahead of time. This could be during build time, or at runtime, where they allow access to data without building an API that needs to be queried from the client.

  2. 2
    Article
    Avatar of tilThis is Learning·3y

    React Query - Abort Request

    AbortSignal is a javascript interface used to abort ongoing methods. When you create a request, both accept a signal and if you abort that signal you can abort the request. Using these interfaces, you can handle out-of-the-box the abort of an HTTP request created with the fetch API but also with axios if you want.