We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca0bd28 commit b0844acCopy full SHA for b0844ac
packages/vue-apollo-composable/src/useQuery.ts
@@ -40,7 +40,7 @@ export interface UseQueryOptions<
40
TVariables extends OperationVariables = OperationVariables
41
> extends Omit<WatchQueryOptions<TVariables>, 'query' | 'variables'> {
42
clientId?: string
43
- enabled?: boolean
+ enabled?: boolean | Ref<boolean>
44
throttle?: number
45
debounce?: number
46
prefetch?: boolean
packages/vue-apollo-composable/src/useSubscription.ts
@@ -35,7 +35,7 @@ export interface UseSubscriptionOptions <
35
TVariables = OperationVariables
36
> extends Omit<SubscriptionOptions<TVariables>, 'query' | 'variables'> {
37
38
39
}
0 commit comments