Answers for "making firestore tags"

0

making firestore tags

const query = ref.where('colors', 'array-contains-any', ['red', 'white', 'blue']);
Posted by: Guest on October-19-2020
0

making firestore tags

const db = firebase.firestore();

const ref = db.collection('products');

const query = ref.where('color', 'in', ['red', 'white', 'blue']);
Posted by: Guest on October-19-2020

Browse Popular Code Answers by Language