I am trying to filter data from Firebase realtime database by child value But i am not able to do as it was simple to do in web version 8 How can i achieve
i tried below
get(ref(database, 'Orders/'), orderByChild('status').equalTo('onTheWay')).then((snapshot) =>{
//my code here
});
it gives me the following error
orderByChild(...).equalTo is not a function