This days I'm facing a problem with firebase.
I'd like to retrive some values with android, in alphabetical order.
To do this I made a Query in which i use orderBy("ex.Name") and this works fine.
Now i added some data to the nodes, and I'd like to perform the same query but with one more filter.
With the Firebase api you can use only one .OrderBy() and this prevents me to filter data correctly.
So I thought about ordering them alphabetically server side. In this way I will be able to retrive them already ordered and then filtering them on another variabile.