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 7e8e07f commit 2a9a37cCopy full SHA for 2a9a37c
src/mutation/mutation.ts
@@ -91,7 +91,7 @@ export function mutationWithClientMutationId(
91
const { clientMutationId } = input;
92
const payload = mutateAndGetPayload(input, context, info);
93
if (isPromise(payload)) {
94
- // @ts-expect-error FIXME
+ // @ts-expect-error update to 16.x.x should fix this
95
return payload.then(injectClientMutationId);
96
}
97
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