Skip to content

Commit

Permalink
docs: Update useQuery.md (#5454)
Browse files Browse the repository at this point in the history
This commit puts keys in alpha order and adds one that was not included previously, `errorUpdateCount`.
  • Loading branch information
samuraijane authored May 26, 2023
1 parent 2892813 commit dd5b64a
Showing 1 changed file with 25 additions and 24 deletions.
49 changes: 25 additions & 24 deletions docs/react/reference/useQuery.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,31 @@ title: useQuery

```tsx
const {
data,
dataUpdatedAt,
error,
errorUpdatedAt,
failureCount,
failureReason,
isError,
isFetched,
isFetchedAfterMount,
isFetching,
isPaused,
isLoading,
isLoadingError,
isPlaceholderData,
isPreviousData,
isRefetchError,
isRefetching,
isInitialLoading,
isStale,
isSuccess,
refetch,
remove,
status,
fetchStatus,
data,
dataUpdatedAt,
error,
errorUpdateCount,
errorUpdatedAt,
failureCount,
failureReason,
fetchStatus,
isError,
isFetched,
isFetchedAfterMount,
isFetching,
isInitialLoading,
isLoading,
isLoadingError,
isPaused,
isPlaceholderData,
isPreviousData,
isRefetchError,
isRefetching,
isStale,
isSuccess,
refetch,
remove,
status
} = useQuery({
queryKey,
queryFn,
Expand Down

0 comments on commit dd5b64a

Please sign in to comment.