In my android app, I am storing product list in this structure. But I need to check that keyword contains my searched text. I am using this query
Query query= FirebaseDatabase.getInstance().getReference(productList)
.orderByChild("keywords").startAt("bag").endAt("bag\uf8ff");
But it is not working,Please help me in this part.Otherwise say a correct structure to save keywords in my app FirebaseDB.