You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1992,7 +1992,7 @@ const {
1992
1992
- `loading` if the query is in an initial loading state. This means there is no cached data and the query is currently fetching, eg `isFetching ===true`)
1993
1993
- `error` if the query attempt resulted in an error. The corresponding `error` property has the error received from the attempted fetch
1994
1994
- `success` if the query has received a response with no errors and is ready to display its data. The corresponding `data` property on the query is the data received from the successful fetch or if the query is in `manual` mode and has not been fetched yet `data` is the first `initialData` supplied to the query on initialization.
1995
-
- `resolveData: Any`
1995
+
- `resolvedData: Any`
1996
1996
- Defaults to `undefined`.
1997
1997
- The last successfully resolved data for the query.
1998
1998
- When fetching based on a new query key, the value will resolve to the last known successful value, regardless of query key
0 commit comments