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
@@ -93,9 +93,9 @@ export function mutationWithClientMutationId(
93
93
}
94
94
returninjectClientMutationId(payload);
95
95
96
-
functioninjectClientMutationId(data: mixed){
96
+
functioninjectClientMutationId(data: unknown){
97
97
if(typeofdata==='object'&&data!==null){
98
-
// $FlowFixMe[cannot-write] It's bad idea to mutate data but we need to pass clientMutationId somehow. Maybe in future we figure out better solution satisfying all our test cases.
98
+
// @ts-expect-error FIXME It's bad idea to mutate data but we need to pass clientMutationId somehow. Maybe in future we figure out better solution satisfying all our test cases.
99
99
data.clientMutationId=clientMutationId;
100
100
}
101
101
@@ -107,10 +107,6 @@ export function mutationWithClientMutationId(
107
107
108
108
// FIXME: Temporary until graphql-js resolves this issue
109
109
// See, https://github.com/graphql/graphql-js/pull/3243#issuecomment-919510590
0 commit comments