Hi, I’ve just been looking through the Firebase plugin docs. Looks great and simple to use as always.
Can I ask what is the recommended way to delete a key from the database.
How would I remove a user if the data is structured like in the example:
{
"public" : {
"news" : "Firebase Plugin is now live!"
},
"users" : {
"<user-id>" : {
"username" : "John Doe",
"age" : 22,
"motto" : "Felgo is awesome!"
}
}
}
Cheers,
alb