I have been using Firebase Real Time Fatabase for a while, and today I come across Cloud Firestore. I cannot figure out how to use the LIKE operator on Firestore.
Firebase Real Time Database
ref.child('user').orderByChild('name').startAt(name).endAt(name+'\uf8ff')
In Cloud Firestore I tried
userRef.where('name', '>=', name); <br> userRef.where('name', '<=', name);
But that will not work.
database firebase google-cloud-firestore
Manjok
source share