I have the address,quantity and medname fields. I need to extract the names of the stores in that address having the given medname and value should be greater than the given quantity.
FirebaseRecyclerOptions<model> options =
new FirebaseRecyclerOptions.Builder<model>()
.setQuery(FirebaseDatabase.getInstance().getReference(address).orderByChild(medname).equalTo(medname), model.class)
.build();