You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Usually, when performing a server mutation, the response includes an
updated version of the mutated data.
This avoids an extra roundtrip, and because of eventual consistency, it
also guarantees that we reload with the freshest possible data. If we
didn't seed with the mutation response, and instead refetched with a
separate GET request, we might receive stale data as the mutation
propagates through the data layer.
Not all refreshes are the result of a mutation, though, so the seed is
not required.
0 commit comments