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
6 changes: 3 additions & 3 deletions docs/react/guides/dependent-queries.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,22 +35,22 @@ The `projects` query will start in:

```tsx
status: 'pending'
isLoading: false
isPending: false
fetchStatus: 'idle'
```

As soon as the `user` is available, the `projects` query will be `enabled` and will then transition to:

```tsx
status: 'pending'
isLoading: true
isPending: true
fetchStatus: 'fetching'
```

Once we have the projects, it will go to:

```tsx
status: 'success'
isLoading: false
isPending: false
fetchStatus: 'idle'
```