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
|`equalTo`| Limit list to items that contain certain value. |
29
29
|`limitToFirst`| Sets the maximum number of items to return from the beginning of the ordered list of results. |
30
30
|`limitToLast`| Sets the maximum number of items to return from the end of the ordered list of results. |
31
-
|`startAt`| Return items greater than or equal to the specified key or value, depending on the order-by method chosen. |
31
+
|`startAt`<sup>1</sup> | Return items greater than or equal to the specified key or value, depending on the order-by method chosen. |
32
32
|`endAt`| Return items less than or equal to the specified key or value, depending on the order-by method chosen. |
33
33
34
+
<sup>1</sup> The Firebase SDK supports [an optional `key` parameter](https://firebase.google.com/docs/reference/js/firebase.database.Reference#startAt) when ordering by child, value, or priority. You can specify the `key` parameter using `startAt: { value: 'some-value', key: 'some-key' }`
35
+
34
36
## Invalid query combinations
35
37
36
38
**Queries can only be ordered by one method.** This means you can only specify
0 commit comments