I want to retrieve a value from firestore for in-equality, I know firestore does not support !=
operator.
We have use this clause where("age", "<", "30").where("age", ">" 30)
I want to know how i can use this clause if i want to retrieve the value of string
document.where('courseName','<','MBA').where('courseName','>','MBA').get().then(function(querySnapshot){
querySnapshot.forEach(function(doc){
var result3 ="Others"
var result = querySnapshot.size
})
})
It is showing the value as null