Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Delete node from firebase database

How to delete a node from FireBase from the console? Since it is too big apparently I can't delete it from the console. Usually I could press on the delete button near the node name, but it says the console it's read only for performance reasons.

like image 563
Federico Ponzi Avatar asked Feb 17 '17 15:02

Federico Ponzi


People also ask

How do I delete a node from Firebase realtime database?

The simplest way for deleting data is to call removeValue() on a reference to the location of that data. We can also delete data by specifying null as the value for another write operation such as setValue() or updateChildren().

How do I remove items from Firebase?

Sign in to Firebase, then open your project. , then select Project settings. In the Your apps card, select the app that you want to delete.


1 Answers

Another simple way to delete large nodes is to use the firebase cli

firebase use 'your-database'
firebase database:remove '/path/to/node'
like image 174
Shane Loveland Avatar answered Oct 03 '22 20:10

Shane Loveland