Flutter – Query Firestore for documents that satisfy AND condition
Assuming I have documents in the Firestore in the following format: { 'field1': ['v1', 'v2', 'v3'], 'field2': ['v5', 'v6'] } I want to query for the documents where the field1 contains a value from the given values, and the field2…