Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/pages/reference/useQuery.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ const result = useQuery({
- 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`
- Defaults to `true` so long as `enabled` is set to `false`
- Is `true` whenever a request is in-flight, which includes initial `loading` as well as background refetches.
- Will be `true` if the query is currently fetching, including background fetching.
- `failureCount: number`
- The failure count for the query.
Expand Down