Defined in: packages/query-core/src/types.ts:764
TData = unknown
TError = DefaultError
data: TData | undefined;Defined in: packages/query-core/src/types.ts:771
The last successfully resolved data for the query.
dataUpdatedAt: number;Defined in: packages/query-core/src/types.ts:775
The timestamp for when the query most recently returned the status as "success".
error: TError | null;Defined in: packages/query-core/src/types.ts:780
The error object for the query, if an error was thrown.
Defaults to null.
errorUpdateCount: number;Defined in: packages/query-core/src/types.ts:799
The sum of all errors.
errorUpdatedAt: number;Defined in: packages/query-core/src/types.ts:784
The timestamp for when the query most recently returned the status as "error".
failureCount: number;Defined in: packages/query-core/src/types.ts:790
The failure count for the query.
Incremented every time the query fails.
Reset to 0 when the query succeeds.
failureReason: TError | null;Defined in: packages/query-core/src/types.ts:795
The failure reason for the query retry.
Reset to null when the query succeeds.
fetchStatus: FetchStatus;Defined in: packages/query-core/src/types.ts:889
The fetch status of the query.
fetching: Is true whenever the queryFn is executing, which includes initial pending as well as background refetch.
paused: The query wanted to fetch, but has been paused.
idle: The query is not fetching.
See Network Mode for more information.
isEnabled: boolean;Defined in: packages/query-core/src/types.ts:867
true if this observer is enabled, false otherwise.
isError: boolean;Defined in: packages/query-core/src/types.ts:804
A derived boolean from the status variable, provided for convenience.
true if the query attempt resulted in an error.
isFetched: boolean;Defined in: packages/query-core/src/types.ts:808
Will be true if the query has been fetched.
isFetchedAfterMount: boolean;Defined in: packages/query-core/src/types.ts:813
Will be true if the query has been fetched after the component mounted.
This property can be used to not show any previously cached data.
isFetching: boolean;Defined in: packages/query-core/src/types.ts:818
A derived boolean from the fetchStatus variable, provided for convenience.
true whenever the queryFn is executing, which includes initial pending as well as background refetch.
isInitialLoading: boolean;Defined in: packages/query-core/src/types.ts:836
isInitialLoading is being deprecated in favor of isLoading and will be removed in the next major version.
isLoading: boolean;Defined in: packages/query-core/src/types.ts:823
Is true whenever the first fetch for a query is in-flight.
Is the same as isFetching && isPending.
isLoadingError: boolean;Defined in: packages/query-core/src/types.ts:831
Will be true if the query failed while fetching for the first time.
isPaused: boolean;Defined in: packages/query-core/src/types.ts:841
A derived boolean from the fetchStatus variable, provided for convenience.
The query wanted to fetch, but has been paused.
isPending: boolean;Defined in: packages/query-core/src/types.ts:827
Will be pending if there's no cached data and no query attempt was finished yet.
isPlaceholderData: boolean;Defined in: packages/query-core/src/types.ts:845
Will be true if the data shown is the placeholder data.
isRefetchError: boolean;Defined in: packages/query-core/src/types.ts:849
Will be true if the query failed while refetching.
isRefetching: boolean;Defined in: packages/query-core/src/types.ts:854
Is true whenever a background refetch is in-flight, which does not include initial pending.
Is the same as isFetching && !isPending.
isStale: boolean;Defined in: packages/query-core/src/types.ts:858
Will be true if the data in the cache is invalidated or if the data is older than the given staleTime.
isSuccess: boolean;Defined in: packages/query-core/src/types.ts:863
A derived boolean from the status variable, provided for convenience.
true if the query has received a response with no errors and is ready to display its data.
refetch: (options?) => Promise<QueryObserverResult<TData, TError>>;Defined in: packages/query-core/src/types.ts:871
A function to manually refetch the query.
Promise<QueryObserverResult<TData, TError>>
status: QueryStatus;Defined in: packages/query-core/src/types.ts:881
The status of the query.