Skip to content

Instantly share code, notes, and snippets.

@oogatta
Created October 2, 2017 15:32
Show Gist options
  • Save oogatta/6d937129ec93971c2323437cb4203ca2 to your computer and use it in GitHub Desktop.
Save oogatta/6d937129ec93971c2323437cb4203ca2 to your computer and use it in GitHub Desktop.
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