How do I access the "name" tag and its values under each unique firebase keys. Please refer to the attached screenshot of my sample datastructure.
Note: Here, the keys under "Tags" are generated through push function.
I have tried few things in JS but not working.
ref.child("users").child("Tags").limitToFirst(1).on("child_added", function(snapshot) {
console.log(snapshot.val()); });