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
|`orderByKey`| Boolean to order by Firebase Database keys. |
26
26
|`orderByPriority`| Boolean to order by Firebase Database priority. |
27
27
|`orderByValue`| Specify a value to order by. |
28
-
|`equalTo`| Limit list to items that contain certain value. |
28
+
|`equalTo`<sup>1</sup> | 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
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
-
|`endAt`| Return items less than or equal to the specified key or value, depending on the order-by method chosen. |
32
+
|`endAt`<sup>1</sup> | 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' }`
34
+
<sup>1</sup> The Firebase SDK supports an optional `key` parameter for [`startAt`](https://firebase.google.com/docs/reference/js/firebase.database.Reference#startAt), [`endAt`](https://firebase.google.com/docs/reference/js/firebase.database.Reference#endAt), and [`equalTo`](https://firebase.google.com/docs/reference/js/firebase.database.Reference#equalTo)when ordering by child, value, or priority. You can specify the `key` parameter using an object literal that contains the `value` and the `key`. For example: `startAt: { value: 'some-value', key: 'some-key' }`.
0 commit comments