We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6d412e commit 5defe79Copy full SHA for 5defe79
src/mutation/mutation.ts
@@ -95,7 +95,7 @@ export function mutationWithClientMutationId(
95
const { clientMutationId } = input;
96
const payload = mutateAndGetPayload(input, context, info);
97
if (isPromise(payload)) {
98
- // @ts-expect-error FIXME
+ // @ts-expect-error update to 16.x.x should fix this
99
return payload.then(injectClientMutationId);
100
}
101
return injectClientMutationId(payload);
src/mutation/type.d.ts
@@ -1,2 +1,3 @@
1
+// Remove after update to 16.x.x
2
// eslint-disable-next-line import/unambiguous
3
declare module 'graphql/jsutils/isPromise';
0 commit comments