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
* - The initial state update (setting loading to true) is skipped
454
-
* - The success state update (setting data and setting loading to false) is skipped
455
-
* - Error updates will still occur
456
-
*
457
-
* The default value is `false`.
458
-
*
459
-
* This option is useful when you want to execute a mutation but don't need to track its progress or result in the UI, potentially improving performance by reducing re-renders.
460
-
*
461
-
* @docGroup 1. Operation options
462
-
*/
463
-
ignoreResults: unknown;
464
450
}
465
451
466
452
exportinterfaceMutationResultDocumentation{
467
453
/**
468
-
* The data returned from your mutation. Can be `undefined` if `ignoreResults` is `true`.
454
+
* The data returned from your mutation. Can be `undefined` if the `errorPolicy`
455
+
* is `all` or `ignore` and the server returns a GraphQL response with `errors`
0 commit comments