i have a collection with name user and doc with doc id 'dos12'
and have data like this ({ number:2322012, name:'abc })
i am using
firestore().collection('user').orderBy('name')
.startAt('abc)
.endAt('abc + '\uf8ff')
.get()
This is case sensitive if i am searching Abc then it is not getting results. How can i make it non-case Sensitive so that i can get on search abc or ABC get same results. As well as how can make it if i search a letter b letter or c letter then also get results. Now if i search bc then not getting any result.
Thanks