Redux toolkit query learning memo

A study note memo: Using RTK query in React

Posted by Jiali on August 25, 2022

This is a study note memo for learning RTK query along with an online course for RTK query, lesson 6. RTK Query is a powerful data fetching and caching tool. Other alternatives: Apollo Client, React Query, Urql, and SWR.

RTK Query conetnt

  • Basic Apis and set up
  • Mutation
  • Cache Behavior
  • Automated Re-fetching
  • Manual Cache Updates
    • Optimistic Updates
  • Conditional Fetching (https://redux-toolkit.js.org/rtk-query/usage/conditional-fetching#overview)

    RTK Query supports conditional fetching to enable that behavior. If you want to prevent a query from automatically running, you can use the skip parameter in a hook. When skip is true (or skipToken is passed in as arg):

  • Pagination
  • Prefetching

Reference