Google Firestore - How to get multiple documents by multiple IDs in one round trip?
P粉536532781
2023-08-27 20:19:08
<p>I was wondering if it is possible to get multiple documents by a list of IDs in one round trip (network call) to the Firestore database. </p>
Actually, you would use firestore.getAll like this
async getUsers({userIds}) { const refs = userIds.map(id => this.firestore.doc(`users/${id}`)) const users = await this.firestore.getAll(...refs) console.log(users.map(doc => doc.data())) }Or use Promise syntax
getUsers({userIds}) { const refs = userIds.map(id => this.firestore.doc(`users/${id}`)) this.firestore.getAll(...refs).then(users => console.log(users.map(doc => doc.data()))) }If you are in Node:
https://github.com/ googleapis/nodejs-firestore/blob/master/dev/src/index.ts#L978
/** * Retrieves multiple documents from Firestore. * * @param {...DocumentReference} documents - The document references * to receive. * @returns {Promise<Array.<DocumentSnapshot>>} A Promise that * contains an array with the resulting document snapshots. * * @example * let documentRef1 = firestore.doc('col/doc1'); * let documentRef2 = firestore.doc('col/doc2'); * * firestore.getAll(documentRef1, documentRef2).then(docs => { * console.log(`First document: ${JSON.stringify(docs[0])}`); * console.log(`Second document: ${JSON.stringify(docs[1])}`); * }); */This is specifically for the server SDK
Update: Cloud Firestore now supports IN queries!