1

I want to delete all the nodes from my root directory as shown in the picture.

enter image description here

There's no delete button in the console, how do I delete them?

There's supposed to be a trash icon near the node, but it's not showing.

Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807

2 Answers2

3

The Firebase console switched to read-only mode, since there's too much data for it to handle.

To delete a node, you can:

  • run a curl request in a terminal window as shown here: https://stackoverflow.com/a/42182390

  • import an empty JSON file into the path you want to delete.

  • use the API to delete the value from the path.

  • Navigate to each of the child nodes, and delete those one by one, until you've either deleted them all, or the console switches back to realtime mode.

Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807
0

See It appears on hover - just hover on that and then click on trash button enter image description here

So after importing JSON

enter image description here

Salman Shaikh
  • 321
  • 1
  • 10