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
f9d3d8d: Extend waitOn in useMutation to accept a predicate function (result: OperationResult, operationName: string | undefined) => boolean in addition to the existing string | DocumentNode | Array forms. Subscription results already flow through emitExchange, so the predicate works equally for queries and subscriptions. This enables mutations to wait for a specific subscription event (e.g. matching a returned entity ID) rather than a named live query re-emission.