Is it possible to query documents fields against an array of values where it would return the fields which contain one of the array elements values
_fireStore
.collection('articles')
.orderBy('created')
.where('projectName', isEqualTo: listHearted)
.getDocuments()
.asStream(),