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
- Low-level paged fetch that mirrors the native call. On Android the result is sorted by `lastUpdatedAt` descending; iOS order is undefined.
134
-
135
-
```ts
136
-
const first500 =awaitgetAllPaged(0, 500);
137
-
const next500 =awaitgetAllPaged(500, 500);
138
-
```
139
-
140
132
-`getAll(options?: { offset?: number; limit?: number; pageSize?: number }): Promise<Contact[]>`
141
-
- Convenience wrapper for `getAll`. When `limit` is provided it behaves like `getAllPaged`. Otherwise it will loop until all contacts are fetched (respecting `pageSize`).
133
+
- Convenience wrapper for the native `getAll`. When `limit` is provided it returns that specific page. Otherwise it loops until all contacts are fetched (respecting `pageSize`, default 500).
0 commit comments