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 d5fab5e commit 3728928Copy full SHA for 3728928
packages/vue-apollo-composable/src/useResult.ts
@@ -79,7 +79,7 @@ export function useResult<
79
defaultValue?: TDefaultValue,
80
pick?: (data: DeepRequired<DeepNonNullable<TResult>>) => TReturnValue,
81
): UseResultReturn<TResult | TResult[keyof TResult] | TDefaultValue | TReturnValue | undefined> {
82
- console.warn(`'useResult' is deprecated and will be removed soon. Plase use a computed instead.
+ console.warn(`'useResult' is deprecated and will be removed soon. Please use 'computed' instead.
83
Before:
84
const items = useResult(result, [], data => data.someField.myItems)
85
After:
0 commit comments