Skip to content

Instantly share code, notes, and snippets.

@yogieputra8
Created September 10, 2016 19:56
Show Gist options
  • Save yogieputra8/098e760f4cfafd9a3c09647564673f05 to your computer and use it in GitHub Desktop.
Save yogieputra8/098e760f4cfafd9a3c09647564673f05 to your computer and use it in GitHub Desktop.
var db = firebase.database();
var ref = db.ref("students");
ref.orderByChild("city").equalTo("san_fransisco").on("value", function(snapshot) {
ref.orderByChild("age").equalTo(17).on("value", function(snapshot) {
console.log(snapshot.val());
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment