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
+3-1
Original file line number
Diff line number
Diff line change
@@ -284,7 +284,7 @@ Result:
284
284
}
285
285
```
286
286
287
-
If an `id` isn't found, it's simply not returned. Notice that above, there is no object with an `id` of `3`.
287
+
If an `id` isn't found, it's simply not returned. Notice that above, there is no object with an `id` of `3`.
288
288
289
289
`find` results are always returned ordered by id. The order of your `ids` array will not necessarily be reflected in the returned array of objects.
290
290
@@ -321,6 +321,8 @@ The following options based on the options for [PouchDB batch fetch](http://pouc
321
321
*`limit`: Maximum number of documents to return.
322
322
*`skip`: Number of docs to skip before returning (warning: poor performance on IndexedDB/LevelDB!).
323
323
324
+
Also it is possible to add an async option `{async: true|false}` in order to force to sideload or not dependent objects. Please refer to the [Async relationships](#async-relationships) chapter for more details.
0 commit comments