I need to perform a query to return a list of documents associated with one particular user id
this works because I´m sending exactly the same map.
firestore.collection('conversations').where('users', 'array-contains', {id: 1, username: 'john')
this doesn´t work I assume because I´m only sending the id
firestore.collection('conversations').where('users', 'array-contains', {id: 1})
is it possible to do that or I will have to "manually" filter all records? thank you!