We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
UseMutationReturn
Versions apollo-composable: 4.0.0-alpha.6
In useMutation.d.ts the return type of the function mutate is actually
useMutation.d.ts
mutate
Promise<FetchResult<any, Record<string, any>, Record<string, any>>>;
I should be fixed with TResult
TResult
Promise<FetchResult<TResult, Record<string, any>, Record<string, any>>>;