DeepFrontend
Learning Paths
Practice
System Design & DS
Design Studio
Data Structures Curriculum
Real-World Case Studies
Careers
Job Board
Resume Builder
Blog
Sign in
Search
⌘K
Go Pro
Loading compiler resources...
Redux Ecosystem Quiz Practice
Active Recall Drill Session
← Exit Session
Question 1 of 1
hard
Redux Ecosystem
Why does RTK Query's tag-based invalidation approach reduce bugs compared to manually tracking 'what needs to refetch after this mutation'?
A
It doesn't actually reduce bugs, it's purely a convenience API
B
Instead of remembering to manually call each affected query's refetch function after every mutation, matching tags automatically and correctly identify EVERY currently-subscribed query that needs refreshing, confirmed to work with zero manual refetch code
C
It disables mutations that could cause stale data
D
It requires writing MORE code than manual refetching, but is more explicit
Check Answer