Skip to content

Instantly share code, notes, and snippets.

@abhikhatri
Last active November 13, 2018 08:18
Show Gist options
  • Save abhikhatri/e6dec1965a38fab21892dd6f29173430 to your computer and use it in GitHub Desktop.
Save abhikhatri/e6dec1965a38fab21892dd6f29173430 to your computer and use it in GitHub Desktop.
Rough Snippet to delete snap in firebase
ref.orderByChild('key').equalTo('something').once('value')
.then(function (snap) {
snap.forEach(function (snap) {
if (item.key === '-LTRAB3DKkK4FC765') {
snap.remove();
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment