Android/Java:
In firestore document, I have a field "name" which have value America 
I want to create a firebase query in the way that if I pass ame in that so it does return all the documents which have ame in the vale of their name field.
firebaseFirestore.collection("country").whereContains("name", "ame");
In short, I want to search/filter firestore data using substring.
 
    