If I have a Query a, and I'm setting it to a FirebaseRecyclerAdapter.
Then, I want to constantly create a new Query and update the FirebaseRecyclerAdapter.
E.G:
query = database.orderByChild("child");
query2 = database.orderByChild("child2");
adapter = new FirebaseRecyclerAdapter<...>(...,...,...,query){
...
}
Now, after 3 seconds, I'm looking for a method to change the query. Similar to this:
adapter.setQuery(query2);
Is there an existing method for this? Or was Firebase, like always, too lazy to even work on this?