This comparison table strives to be as accurate and as unbiased as possible. If you use any of these libraries and feel the information could be improved, feel free to suggest changes (with notes or evidence of claims) using the "Edit this page on Github" link at the bottom of this page.
Feature/Capability Key:
React Query | SWR (Website) | Apollo Client (Website) | RTK-Query (Website) | React Router (Website) | |
---|---|---|---|---|---|
Github Repo / Stars | |||||
Platform Requirements | React | React | React, GraphQL | Redux | React |
Their Comparison | (none) | (none) | Comparison | [Comparison][react-router-comparison] | |
Supported Query Syntax | Promise, REST, GraphQL | Promise, REST, GraphQL | GraphQL | Promise, REST, GraphQL | Promise, REST, GraphQL |
Supported Frameworks | React | React | React + Others | Any | React |
Caching Strategy | Hierarchical Key -> Value | Unique Key -> Value | Normalized Schema | Unique Key -> Value | Nested Route -> value |
Cache Key Strategy | JSON | JSON | GraphQL Query | JSON | Route Path |
Cache Change Detection | Deep Compare Keys (Stable Serialization) | Shallow Compare Keys | Deep Compare Keys (Unstable Serialization) | Key Referential Equality (===) | Route Change |
Data Change Detection | Deep Comparison + Structural Sharing | Deep Compare (via dequal ) | Deep Compare (Unstable Serialization) | Key Referential Equality (===) | Loader Run |
Data Memoization | Full Structural Sharing | Identity (===) | Normalized Identity | Identity (===) | Identity (===) |
Bundle Size | + | ||||
API Definition Location | Component, External Config | Component | GraphQL Schema | External Config | Route Tree Configuration |
Queries | ✅ | ✅ | ✅ | ✅ | ✅ |
Cache Persistence | ✅ | ✅ | ✅ | ✅ | 🛑 Active Routes Only 8 |
Devtools | ✅ | 🟡 | ✅ | ✅ | 🛑 |
Polling/Intervals | ✅ | ✅ | ✅ | ✅ | 🛑 |
Parallel Queries | ✅ | ✅ | ✅ | ✅ | ✅ |
Dependent Queries | ✅ | ✅ | ✅ | ✅ | ✅ |
Paginated Queries | ✅ | ✅ | ✅ | ✅ | ✅ |
Infinite Queries | ✅ | ✅ | ✅ | 🛑 | 🛑 |
Bi-directional Infinite Queries | ✅ | 🔶 | 🔶 | 🛑 | 🛑 |
Infinite Query Refetching | ✅ | ✅ | 🛑 | 🛑 | 🛑 |
Lagged Query Data1 | ✅ | 🔶 | 🛑 | ✅ | ✅ |
Selectors | ✅ | 🛑 | ✅ | ✅ | N/A |
Initial Data | ✅ | ✅ | ✅ | ✅ | ✅ |
Scroll Recovery | ✅ | ✅ | ✅ | ✅ | ✅ |
Cache Manipulation | ✅ | ✅ | ✅ | ✅ | 🛑 |
Outdated Query Dismissal | ✅ | ✅ | ✅ | ✅ | ✅ |
Render Batching & Optimization2 | ✅ | 🛑 | 🛑 | ✅ | ✅ |
Auto Garbage Collection | ✅ | 🛑 | 🛑 | ✅ | N/A |
Mutation Hooks | ✅ | 🟡 | ✅ | ✅ | ✅ |
Offline Mutation Support | ✅ | 🛑 | 🟡 | 🛑 | 🛑 |
Prefetching APIs | ✅ | 🔶 | ✅ | ✅ | ✅ |
Query Cancellation | ✅ | 🛑 | 🛑 | 🛑 | ✅ |
Partial Query Matching3 | ✅ | 🛑 | 🛑 | ✅ | N/A |
Stale While Revalidate | ✅ | ✅ | ✅ | ✅ | 🛑 |
Stale Time Configuration | ✅ | 🛑7 | 🛑 | ✅ | 🛑 |
Pre-usage Query/Mutation Configuration4 | ✅ | 🛑 | 🛑 | ✅ | ✅ |
Window Focus Refetching | ✅ | ✅ | 🛑 | 🔶 | 🛑 |
Network Status Refetching | ✅ | ✅ | ✅ | 🔶 | 🛑 |
General Cache Dehydration/Rehydration | ✅ | 🛑 | ✅ | ✅ | ✅ |
Offline Caching | ✅ (Experimental) | 🛑 | ✅ | 🔶 | 🛑 |
React Suspense (Experimental) | ✅ | ✅ | 🛑 | 🛑 | ✅ |
Abstracted/Agnostic Core | ✅ | 🛑 | ✅ | ✅ | 🛑 |
Automatic Refetch after Mutation5 | 🔶 | 🔶 | ✅ | ✅ | ✅ |
Normalized Caching6 | 🛑 | 🛑 | ✅ | 🛑 | 🛑 |
1 Lagged Query Data - React Query provides a way to continue to see an existing query's data while the next query loads (similar to the same UX that suspense will soon provide natively). This is extremely important when writing pagination UIs or infinite loading UIs where you do not want to show a hard loading state whenever a new query is requested. Other libraries do not have this capability and render a hard loading state for the new query (unless it has been prefetched), while the new query loads.
2 Render Optimization - React Query has excellent rendering performance. It will only re-render your components when a query is updated. For example because it has new data, or to indicate it is fetching. React Query also batches updates together to make sure your application only re-renders once when multiple components are using the same query. If you are only interested in the
data
orerror
properties, you can reduce the number of renders even more by settingnotifyOnChangeProps
to['data', 'error']
. SetnotifyOnChangeProps: 'tracked'
to automatically track which fields are accessed and only re-render if one of them changes.
3 Partial query matching - Because React Query uses deterministic query key serialization, this allows you to manipulate variable groups of queries without having to know each individual query-key that you want to match, eg. you can refetch every query that starts with
todos
in its key, regardless of variables, or you can target specific queries with (or without) variables or nested properties, and even use a filter function to only match queries that pass your specific conditions.
4 Pre-usage Query Configuration - This is simply a fancy name for being able to configure how queries and mutations will behave before they are used. For instance, a query can be fully configured with defaults beforehand and when the time comes to use it, only
useQuery(key)
is necessary, instead of being required to pass the fetcher and/or options with every usage. SWR does have a partial form of this feature by allowing you to pre-configure a default fetcher, but only as a global fetcher, not on a per-query basis and definitely not for mutations.
5 Automatic Refetch after Mutation - For truly automatic refetching to happen after a mutation occurs, a schema is necessary (like the one graphQL provides) along with heuristics that help the library know how to identify individual entities and entities types in that schema.
6 Normalized Caching - React Query, SWR and RTK-Query do not currently support automatic-normalized caching which describes storing entities in a flat architecture to avoid some high-level data duplication.
7 SWR's Immutable Mode - SWR ships with an "immutable" mode that does allow you to only fetch a query once for the life of the cache, but it still does not have the concept of stale-time or conditional auto-revalidation
8 React Router cache persistence - React Router does not cache data beyond the currently matched routes. If a route is left, its data is lost.
The best JavaScript newsletter! Delivered every Monday to over 76,000 devs.