File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
packages/vue-apollo-composable/src Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ export interface UseQueryOptions<
40
40
TVariables extends OperationVariables = OperationVariables
41
41
> extends Omit < WatchQueryOptions < TVariables > , 'query' | 'variables' > {
42
42
clientId ?: string
43
- enabled ?: boolean
43
+ enabled ?: boolean | Ref < boolean >
44
44
throttle ?: number
45
45
debounce ?: number
46
46
prefetch ?: boolean
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ export interface UseSubscriptionOptions <
35
35
TVariables = OperationVariables
36
36
> extends Omit < SubscriptionOptions < TVariables > , 'query' | 'variables' > {
37
37
clientId ?: string
38
- enabled ?: boolean
38
+ enabled ?: boolean | Ref < boolean >
39
39
throttle ?: number
40
40
debounce ?: number
41
41
}
You can’t perform that action at this time.
0 commit comments