If I have a database like
users: {
  user1: { 
    name:'qwert', 
    id: 123,
    num: 9999 
  },
  user2: { 
    name:'zxcvb', 
    id: 456,
    num: 8888 
  }
}
How can I read only name of all the users?
My expected result:
{
  user1:{
    name:'qwert'
  }, 
  user2:{
    name:'zxcvb'
  }
}
If I use this in JavaScript:
ref('users').once('value').then((snap)=>{console.log(snap.val())})
I get all the users with that all their data (but I only want name of each)
What changes should I make in my query to get the expected result?
Any suggestions would be highly appreciated and really helpful. I tried searching through the docs but didn't get what I was trying to look for.
My ultimate aim is to cut down the costs of reading unnecessary data.
 
     
    