(config: QueryClientConfig = {})
| 35 | |
| 36 | export class QueryClient extends QC { |
| 37 | constructor(config: QueryClientConfig = {}) { |
| 38 | const vueQueryConfig = { |
| 39 | defaultOptions: config.defaultOptions, |
| 40 | queryCache: config.queryCache || new QueryCache(), |
| 41 | mutationCache: config.mutationCache || new MutationCache(), |
| 42 | } |
| 43 | super(vueQueryConfig) |
| 44 | } |
| 45 | |
| 46 | isRestoring?: Ref<boolean> = ref(false) |
| 47 |
nothing calls this directly
no outgoing calls
no test coverage detected