bbasaran
bbasaran

Reputation: 402

Firebase Real-time Database: Why I cannot import multiple JSON files in same directory hierarchy?

I am trying to import my JSON files into the same directory but once I import the first one, the latter one overrides the former one:

The first import:

ss1

After the second one:

enter image description here

As you can see above, the first file was placed inside the latter one. How can I import multiple JSON files in the same directory level?

Upvotes: 1

Views: 551

Answers (1)

Frank van Puffelen
Frank van Puffelen

Reputation: 600006

Assuming that you import the data using the console, any data in the JSON file replaces the existing location where you run the import. There is no way to change this behavior.

What you can do is import the data to a different location in the console. So if you open the recipes node to import the first JSON, and open the searches node for the second JSON, the two imports won't overwrite each other.

If you want to import them into the root of the database, you'll have to merge the two JSON files yourself and then import them in one go.

Upvotes: 1

Related Questions