We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d058e6 commit a61724bCopy full SHA for a61724b
1 file changed
docs/api/database.md
@@ -15,6 +15,16 @@ firestack.database()
15
});
16
```
17
18
+Read for export:
19
+```javascript
20
+firestack.database()
21
+ .ref('posts')
22
+ .on('value', (snapshot) => {
23
+ const value = snapshot.exportVal();
24
+ });
25
+```
26
+This includes hidden properties like `.priority`
27
+
28
Basic write example:
29
```javascript
30
firestack.database()
0 commit comments