I am using Firebase realtime DB in my app,I could not use multiple order by in my query.If i am not use that one,looping the data again and again.It leads my app run slow.So please help me how to do that.Otherwise how to get multiple items in single Query
DatabaseReference reference = FirebaseDatabase.getInstance().getReference();
Query query = reference.child("issue").orderByChild("id").equalTo(0,1,3);
...Like,is it possible????