We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ee983a commit 30cee3aCopy full SHA for 30cee3a
docs/react/guides/dependent-queries.md
@@ -35,22 +35,22 @@ The `projects` query will start in:
35
36
```tsx
37
status: 'pending'
38
-isLoading: false
+isPending: false
39
fetchStatus: 'idle'
40
```
41
42
As soon as the `user` is available, the `projects` query will be `enabled` and will then transition to:
43
44
45
46
-isLoading: true
+isPending: true
47
fetchStatus: 'fetching'
48
49
50
Once we have the projects, it will go to:
51
52
53
status: 'success'
54
55
56
0 commit comments