(
options: UseBaseQueryOptions<
TQueryFnData,
TError,
TData,
TQueryData,
TQueryKey
>,
Observer: typeof QueryObserver,
queryClient?: QueryClient,
)
| 24 | import type { UseBaseQueryOptions } from './types' |
| 25 | |
| 26 | export function useBaseQuery< |
| 27 | TQueryFnData, |
| 28 | TError, |
| 29 | TData, |
| 30 | TQueryData, |
| 31 | TQueryKey extends QueryKey, |
| 32 | >( |
| 33 | options: UseBaseQueryOptions< |
| 34 | TQueryFnData, |
| 35 | TError, |
| 36 | TData, |
| 37 | TQueryData, |
| 38 | TQueryKey |
| 39 | >, |
| 40 | Observer: typeof QueryObserver, |
| 41 | queryClient?: QueryClient, |
| 42 | ): QueryObserverResult<TData, TError> { |
| 43 | if (process.env.NODE_ENV !== 'production') { |
| 44 | if (typeof options !== 'object' || Array.isArray(options)) { |
| 45 | throw new Error( |
| 46 | 'Bad argument type. Starting with v5, only the "Object" form is allowed when calling query related functions. Please use the error stack to find the culprit call. More info here: https://tanstack.com/query/latest/docs/react/guides/migrating-to-v5#supports-a-single-signature-one-object', |
| 47 | ) |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | const isRestoring = useIsRestoring() |
| 52 | const errorResetBoundary = useQueryErrorResetBoundary() |
| 53 | const client = useQueryClient(queryClient) |
| 54 | const defaultedOptions = client.defaultQueryOptions(options) |
| 55 | |
| 56 | const query = client |
| 57 | .getQueryCache() |
| 58 | .get< |
| 59 | TQueryFnData, |
| 60 | TError, |
| 61 | TQueryData, |
| 62 | TQueryKey |
| 63 | >(defaultedOptions.queryHash) |
| 64 | |
| 65 | if (process.env.NODE_ENV !== 'production') { |
| 66 | if (!defaultedOptions.queryFn) { |
| 67 | console.error( |
| 68 | `[${defaultedOptions.queryHash}]: No queryFn was passed as an option, and no default queryFn was found. The queryFn parameter is only optional when using a default queryFn. More info here: https://tanstack.com/query/latest/docs/framework/react/guides/default-query-function`, |
| 69 | ) |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | const subscribed = options.subscribed !== false |
| 74 | |
| 75 | // Make sure results are optimistically set in fetching state before subscribing or updating options |
| 76 | defaultedOptions._optimisticResults = isRestoring |
| 77 | ? 'isRestoring' |
| 78 | : subscribed |
| 79 | ? 'optimistic' |
| 80 | : undefined |
| 81 | |
| 82 | ensureSuspenseTimers(defaultedOptions) |
| 83 | ensurePreventErrorBoundaryRetry(defaultedOptions, errorResetBoundary, query) |
no test coverage detected