Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

179
Views
Realtime database query and react native

I'm quite new to performing firebase realtime database queries and react native. I have a list of users in my realtime database and some of the users have a list of properties as shown below. I would like to obtain these properties as well as the users of the properties and place it into an array using react native. I'm not to sure how to do this.

This is what I have so far:

  database().ref(`users/`).once(`value`, snapshot =>{
       snapshot.forEach(function(childSnapshot){
            if(childSnapshot.val().properties != null) { 
                                              
            }                                                      
  });

I would like the error to be displayed as:

[{uid1,property1}, {uid1,property2}, {uid2,property1}, {uid2,property2}, {uid2,property3},...., {uidX,propertyX}]

enter image description here})

enter image description here

enter image description here

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

I find that in cases like this, it really helps to give your variables good names:

database().ref(`users/`).once(`value`, snapshot =>{
  let properties = [];
  snapshot.forEach((userSnapshot) => {
    if (userSnapshot.hasChild("properties")) { 
      userSnapshot.child("properties").forEach((propertySnapshot) => {
        properties.push({ 
          uid: userSnapshot.key,
          property: propertySnapshot.val() 
        })
      })
    }                                                      
  });
  console.log(properties);
});
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!