Skip to content

Instantly share code, notes, and snippets.

@steida
Created April 7, 2016 16:40
Show Gist options
  • Select an option

  • Save steida/f3925f3fc56492196164212a0cde5f50 to your computer and use it in GitHub Desktop.

Select an option

Save steida/f3925f3fc56492196164212a0cde5f50 to your computer and use it in GitHub Desktop.
firebase
.child('vetos-votes/yes/vetos/EJixtowRe')
.orderByChild('createdAt')
.once('value', snapshot => {
snapshot.forEach(itemSnapshot => {
// forEach does not follow .orderByChild('createdAt')
console.log(itemSnapshot.val())
});
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment