Firebase How to update multiple children?

12,090

To update multiple properties at the same time, you can run an update() call:

ref.child("Parent").update({
  childe1: "newdata",
  childe2: "newdata",
  childe3: "newdata"
});

You can even specify paths as the keys, in case the properties are at different levels in the tree. Even though that doesn't seem to be the case here, the syntax would be:

ref.update({
  "Parent/childe1": "newdata",
  "Parent/childe2": "newdata",
  "Parent/childe3": "newdata"
});

The exact validation depends a bit on what you'd like to allow, but in general you'd write .validate rules on the server that validate that newData meet your requirements.

Share:
12,090
Amr Ibrahim
Author by

Amr Ibrahim

Making a better world .

Updated on June 04, 2022

Comments

  • Amr Ibrahim
    Amr Ibrahim about 2 years

    I have parent with many children like this:

     Parent:{
            "childe1":"data",
            "childe2":"data",
            "childe3":"data",
            "childe4":"data",
            "childe5":"data"
     }
    

    How can I update the children [ childe1 , childe2 , childe3 ] at same time, preventing any other user from updating them at same time?

  • BadPirate
    BadPirate almost 5 years
    Is it possible to do something like "Parent/*" to update all children in a single call?
  • Frank van Puffelen
    Frank van Puffelen almost 5 years
    Nope. To update a value, you need to know its complete path.
  • Darshan Rathod
    Darshan Rathod over 3 years
    Thank you so much ... Before seeing this,...i am making 2 request for just parent field update & child's nested key update....