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: docs-devsite/database.md
+1
Original file line number
Diff line number
Diff line change
@@ -94,6 +94,7 @@ Firebase Realtime Database
94
94
| Interface | Description |
95
95
| --- | --- |
96
96
|[DatabaseReference](./database.databasereference.md#databasereference_interface)| A <code>DatabaseReference</code> represents a specific location in your Database and can be used for reading or writing data to that Database location.<!---->You can reference the root or child location in your Database by calling <code>ref()</code> or <code>ref("child/path")</code>.<!---->Writing is done with the <code>set()</code> method and reading can be done with the <code>on*()</code> method. See [https://firebase.google.com/docs/database/web/read-and-write](https://firebase.google.com/docs/database/web/read-and-write)|
97
+
|[IteratedDataSnapshot](./database.iterateddatasnapshot.md#iterateddatasnapshot_interface)| Represents a child snapshot of a <code>Reference</code> that is being iterated over. The key will never be undefined. |
97
98
|[ListenOptions](./database.listenoptions.md#listenoptions_interface)| An options objects that can be used to customize a listener. |
98
99
|[Query](./database.query.md#query_interface)| A <code>Query</code> sorts and filters the data at a Database location so only a subset of the child data is included. This can be used to order a collection of data by some attribute (for example, height of dinosaurs) as well as to restrict a large list of items (for example, chat messages) down to a number suitable for synchronizing to the client. Queries are created by chaining together one or more of the filter methods defined here.<!---->Just as with a <code>DatabaseReference</code>, you can receive data from a <code>Query</code> by using the <code>on*()</code> methods. You will only receive events and <code>DataSnapshot</code>s for the subset of the data that matches your query.<!---->See [https://firebase.google.com/docs/database/web/lists-of-data\#sorting\_and\_filtering\_data](https://firebase.google.com/docs/database/web/lists-of-data#sorting_and_filtering_data) for more information. |
99
100
|[ThenableReference](./database.thenablereference.md#thenablereference_interface)| A <code>Promise</code> that can also act as a <code>DatabaseReference</code> when returned by [push()](./database.md#push)<!---->. The reference is available immediately and the <code>Promise</code> resolves as the write to the backend completes. |
0 commit comments