Created
October 2, 2017 15:32
-
-
Save oogatta/6d937129ec93971c2323437cb4203ca2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with (admin.database().ref().child("test").child("Admin")) { | |
set(null); | |
push().set({"hoge": 1, "fuga": 5}); | |
push().set({"hoge": 2, "fuga": 4}); | |
push().set({"hoge": 3, "fuga": 3}); | |
push().set({"hoge": 4, "fuga": 2}); | |
push().set({"hoge": 5, "fuga": 1}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment