( options: CreateQueryOptions<TFnData, TVariables, TError> )
| 3 | import { ReactQuery } from './utils' |
| 4 | |
| 5 | export function createQuery< |
| 6 | TFnData, |
| 7 | TVariables = void, |
| 8 | TError = CompatibleError |
| 9 | >( |
| 10 | options: CreateQueryOptions<TFnData, TVariables, TError> |
| 11 | ): QueryHook<TFnData, TVariables, TError> { |
| 12 | return createBaseQuery(options, ReactQuery.useQuery) |
| 13 | } |
no test coverage detected
searching dependent graphs…