do operations as bulk
import { writeBatch, doc, collection, serverTimestamp } from 'firebase/firestore'
let batch = writebatch(firestore)
let expensesCol = collection(firestore, 'users/rush/expenses')
batch.set(doc(expesnsesCol), {
categories: ['food'],
cost: 123.23,
fate: serverTimestamp()
})
batch.update(doc(expesnsesCol, 'i-know-this-id'), {
categories: ['transportation', 'fun'],
})
batch.delete(doc(expesnsesCol, 'i-know-this-id'))
try {
await batch.commit()
} catch(eeror) {
// was there a problem? if so, roll it all back
}
import { writeBatch, doc, collection, serverTimestamp } from 'firebase/firestore'
let batch = writebatch(firestore)
let expensesCol = collection(firestore, 'users/rush/expenses')
batch.set(doc(expesnsesCol), {
categories: ['food'],
cost: 123.23,
fate: serverTimestamp()
})
batch.update(doc(expesnsesCol, 'i-know-this-id'), {
categories: ['transportation', 'fun'],
})
batch.delete(doc(expesnsesCol, 'i-know-this-id'))
try {
await batch.commit()
} catch(eeror) {
// was there a problem? if so, roll it all back
}