Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface QueryOptions<ResourceData, TError>

Type Parameters

  • ResourceData

  • TError = unknown

Hierarchy

Index

Properties

_defaulted?: boolean
behavior?: QueryBehavior<ResourceData, TError, ResourceData, QueryKey>
cacheTime?: number
enabled?: boolean

Set this to false to disable automatic refetching when the query mounts or changes query keys. To refetch the query, use the refetch method returned from the useQuery instance. Defaults to true.

getNextPageParam?: GetNextPageParamFunction<ResourceData>

This function can be set to automatically get the next cursor for infinite queries. The result will also be used to determine the value of hasNextPage.

getPreviousPageParam?: GetPreviousPageParamFunction<ResourceData>

This function can be set to automatically get the previous cursor for infinite queries. The result will also be used to determine the value of hasPreviousPage.

initialData?: ResourceData | InitialDataFunction<ResourceData>
initialDataUpdatedAt?: number | (() => undefined | number)
keepPreviousData?: boolean

Set this to true to keep the previous data when fetching based on a new query key. Defaults to false.

meta?: QueryMeta

Additional payload to be stored on each query. Use this property to pass information that can be used in other places.

notifyOnChangeProps?: ("isLoading" | "data" | "error" | "status" | "isError" | "isIdle" | "isLoadingError" | "isRefetchError" | "isSuccess" | "fetchNextPage" | "fetchPreviousPage" | "hasNextPage" | "hasPreviousPage" | "isFetchingNextPage" | "isFetchingPreviousPage" | "dataUpdatedAt" | "errorUpdatedAt" | "failureCount" | "errorUpdateCount" | "isFetched" | "isFetchedAfterMount" | "isFetching" | "isPlaceholderData" | "isPreviousData" | "isRefetching" | "isStale" | "refetch" | "remove")[] | "tracked"

If set, the component will only re-render if any of the listed properties change. When set to ['data', 'error'], the component will only re-render when the data or error properties change. When set to tracked, access to properties will be tracked, and the component will only re-render when one of the tracked properties change.

notifyOnChangePropsExclusions?: ("isLoading" | "data" | "error" | "status" | "isError" | "isIdle" | "isLoadingError" | "isRefetchError" | "isSuccess" | "fetchNextPage" | "fetchPreviousPage" | "hasNextPage" | "hasPreviousPage" | "isFetchingNextPage" | "isFetchingPreviousPage" | "dataUpdatedAt" | "errorUpdatedAt" | "failureCount" | "errorUpdateCount" | "isFetched" | "isFetchedAfterMount" | "isFetching" | "isPlaceholderData" | "isPreviousData" | "isRefetching" | "isStale" | "refetch" | "remove")[]

If set, the component will not re-render if any of the listed properties change.

optimisticResults?: boolean

If set, the observer will optimistically set the result in fetching state before the query has actually started fetching. This is to make sure the results are not lagging behind. Defaults to true.

overrideGlobalOnError?: boolean
placeholderData?: ResourceData | PlaceholderDataFunction<ResourceData>

If set, this value will be used as the placeholder data for this particular query observer while the query is still in the loading data and no initialData has been provided.

queryFn?: QueryFunction<ResourceData, QueryKey>
queryHash?: string
queryKey?: QueryKey
queryKeyHashFn?: QueryKeyHashFunction<QueryKey>
refetchInterval?: number | false | ((data: undefined | ResourceData, query: Query<ResourceData, TError, ResourceData, QueryKey>) => number | false)

If set to a number, the query will continuously refetch at this frequency in milliseconds. If set to a function, the function will be executed with the latest data and query to compute a frequency Defaults to false.

refetchIntervalInBackground?: boolean

If set to true, the query will continue to refetch while their tab/window is in the background. Defaults to false.

refetchOnMount?: boolean | "always" | ((query: Query<ResourceData, TError, ResourceData, QueryKey>) => boolean | "always")

If set to true, the query will refetch on mount if the data is stale. If set to false, will disable additional instances of a query to trigger background refetches. If set to 'always', the query will always refetch on mount. If set to a function, the function will be executed with the latest data and query to compute the value Defaults to true.

refetchOnReconnect?: boolean | "always" | ((query: Query<ResourceData, TError, ResourceData, QueryKey>) => boolean | "always")

If set to true, the query will refetch on reconnect if the data is stale. If set to false, the query will not refetch on reconnect. If set to 'always', the query will always refetch on reconnect. If set to a function, the function will be executed with the latest data and query to compute the value. Defaults to true.

refetchOnWindowFocus?: boolean | "always" | ((query: Query<ResourceData, TError, ResourceData, QueryKey>) => boolean | "always")

If set to true, the query will refetch on window focus if the data is stale. If set to false, the query will not refetch on window focus. If set to 'always', the query will always refetch on window focus. If set to a function, the function will be executed with the latest data and query to compute the value. Defaults to true.

requestConfig?: RequestConfig
retry?: RetryValue<TError>

If false, failed queries will not retry by default. If true, failed queries will retry infinitely., failureCount: num If set to an integer number, e.g. 3, failed queries will retry until the failed query count meets that number. If set to a function (failureCount, error) => boolean failed queries will retry until the function returns false.

retryDelay?: RetryDelayValue<TError>
retryOnMount?: boolean

If set to false, the query will not be retried on mount if it contains an error. Defaults to true.

staleTime?: number

The time in milliseconds after data is considered stale. If set to Infinity, the data will never be considered stale.

structuralSharing?: boolean

Set this to false to disable structural sharing between query results. Defaults to true.

suspense?: boolean

If set to true, the query will suspend when status === 'loading' and throw errors when status === 'error'. Defaults to false.

useErrorBoundary?: boolean | ((error: TError, query: Query<ResourceData, TError, ResourceData, QueryKey>) => boolean)

Whether errors should be thrown instead of setting the error property. If set to true or suspense is true, all errors will be thrown to the error boundary. If set to false and suspense is false, errors are returned as state. If set to a function, it will be passed the error and the query, and it should return a boolean indicating whether to show the error in an error boundary (true) or return the error as state (false). Defaults to false.

Methods

  • isDataEqual(oldData: undefined | TData, newData: TData): boolean
  • Parameters

    • oldData: undefined | TData
    • newData: TData

    Returns boolean

  • onError(err: TError): void
  • This callback will fire if the query encounters an error and will be passed the error.

    Parameters

    • err: TError

    Returns void

  • onSettled(data: undefined | TData, error: null | TError): void
  • This callback will fire any time the query is either successfully fetched or errors and be passed either the data or error.

    Parameters

    • data: undefined | TData
    • error: null | TError

    Returns void

  • onSuccess(data: TData): void
  • This callback will fire any time the query successfully fetches new data or the cache is updated via setQueryData.

    Parameters

    • data: TData

    Returns void

  • select(data: TQueryData): TData
  • This option can be used to transform or select a part of the data returned by the query function.

    Parameters

    • data: TQueryData

    Returns TData

Generated using TypeDoc