I have a firestore collection where each document has a collection of strings 'tags', I'd like to do a query to the firestore collection and get all results where a string appears in the tags array.
Something like:
 var { docs } = await admin
            .firestore()
            .collection('submissions')
            .where((x)=> x.tags.contains('mytag'))
            .get();
Is that possible?
 
    