diff --git a/README.md b/README.md index 6c672cb..fd3b9dc 100644 --- a/README.md +++ b/README.md @@ -362,6 +362,17 @@ When using ```order_by_value()```, children are ordered by their value. users_by_value = db.child("users").order_by_value().get() ``` +#### retrieve snapshot of db + +```python +users = db.child().get() +``` + +#### retrieve snapshot with idToken + +```python +users = db.child().get(user['idToken']) +``` ## Storage