making firestore tags code example
Example 1: making firestore tags
const db = firebase.firestore();
const ref = db.collection('products');
const query = ref.where('color', 'in', ['red', 'white', 'blue']);
Example 2: making firestore tags
const query = ref.where('colors', 'array-contains-any', ['red', 'white', 'blue']);