I want to update a value under a certain key without using the "naive" way of copy/pasting the key value. Because I want it to scale to any client.
I basically want to update on click the "edit" property to "true".
Here's my current tree structure:

My current method:
var query= db.ref('Clients/AgenceEco/forms/step1/');
query.update({
edit: true
})
The problem is that it actually adds an edit property under the "step1", like the following:

I obviously don't want that but want to update the value under the random generated key of firebase.
How would you go about solving this issue? Thanks