-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 17 replies
-
Hi @kcsujeet! To get the fresh data after a mutation (create/update/delete), it is recommended to use query invalidations, this way you'd have a more declarative control over when it's needed to refetch data already stale because you just modified it. The query invalidations api supports partial query matching, so you can match multiple queries by their prefix, or get really specific and match an exact query with the On the other hand, keep in mind that the |
Beta Was this translation helpful? Give feedback.
your normalized data circularly references itself via
organization
,owner
anduser
. OurstructuralSharing
never finishes. Fix this or setstructuralSharing: false
(but you'll get more re-renders without it).