Skip to content

Commit 7811e65

Browse files
Merge pull request #481 from amoghpalnitkar/patch-1
useFind returned attributes updated
2 parents c7325e3 + 5964454 commit 7811e65

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/composition-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ Let's look at the functionality that each one provides:
150150

151151
- `items` is the list of results. By default, this list will be reactive, so if new items are created which match the query, they will show up in this list automagically.
152152
- `servicePath` is the FeathersJS service path that is used by the current model. This is mostly only useful for debugging.
153-
- `isFindPending` is a boolean that indicates if there is an active query. It is set to `true` just before each outgoing request. It is set to `false` after the response returns. Bind to it in the UI to show an activity indicator to the user.
154-
- `haveBeenRequestedOnce` is a boolean that is set to `true` immediately before the first query is sent out. It remains true throughout the life of the component. This comes in handy for first-load scenarios in the UI.
153+
- `isPending` is a boolean that indicates if there is an active query. It is set to `true` just before each outgoing request. It is set to `false` after the response returns. Bind to it in the UI to show an activity indicator to the user.
154+
- `haveBeenRequested` is a boolean that is set to `true` immediately before the first query is sent out. It remains true throughout the life of the component. This comes in handy for first-load scenarios in the UI.
155155
- `haveLoaded` is a boolean that is set to true after the first API response. It remains `true` for the life of the component. This also comes in handy for first-load scenarios in the UI.
156156
- `isLocal` is a boolean that is set to true if this data is local only.
157157
- `qid` is currently the primary `qid` provided in params. It might become more useful in the future.

0 commit comments

Comments
 (0)