Is that possible to get value based on multiple doc id ?
CollectionReference col1 = Firestore.instance
.collection('service');
col1.where("title", isEqualTo:"Ac replaciment")
.where("title",isEqualTo:"Oil Service")
.getDocuments()
This code not give any result
CollectionReference col1 = Firestore.instance
.collection('service');
col1.where("title", isEqualTo:"Ac replaciment")
.getDocuments()
This code i got result
But i have title with both "Ac replaciment" and "Oil Service" but when i call tougher it is not giving result
I need query like where title =="Oil Service" or title =="Ac replaciment"
How todo this in firestore with flutter
When i run this code it return all data from server
CollectionReference col1 = Firestore.instance.collection('service');
col1.where("title", isEqualTo: "Ac replaciment");
col1.getDocuments().
but i only need to get result if title=="Ac replaciment"
why this issue happening ?what is the correct code?