I do have this structure:
db.collection('users')
and want to make this:
db.collection('users')
.where('works', 'array-contains', 'CASE_A')
.where('works', 'array-contains', 'CASE_B')
.where('works', 'array-contains', 'CASE_C')
...
In this case, I will make an array of
(( .where('works', 'array-contains',
${variable}))
and i will add this in the beginning db.collection('users'), how can i make this?