I have an android app using google firebase. In this i have the query working with one input using .equalsTo as shown below:
Query firebaseSearchQuery = mCarDatabase.orderByChild("make").equalTo(make);
As show it orders by car make and takes in a string with the make. I have am not sure how to approach adding another string input to the query for example i wanted to search the query by model too and what i tried was adding another .equalTo(model) but that breaks the application. Any assistance here would be a great help thank you.