In Firebase database I have a list of Bookings.
Each Booking as the following structure
{
   userUid: string,
   status: string,
   moreStuff: {
     ....
   }
}
I need to select all the bookings associated to a certain user (i.e. whose userUid is equal to the uid of the user, which is known by by app) which have a certain status (e.g. status = confirmed).
I can select the Bookings belonging to a specific user using the following query
db.list('bookings', {
        query: {
            orderByChild: 'userUid',
            equalTo: user.uid
        }
    })
but I have no idea if I can add the additional select condition e.g. status = confirmed
 
     
    