1. ホーム
  2. javascript

[解決済み] Google Firestore - 複数のドキュメントを複数のIDで1往復で取得する方法とは?

2022-04-25 10:14:02

質問

Firestoreデータベースへの1回の往復(ネットワークコール)で、idのリストで複数のドキュメントを取得することは可能なのでしょうか、疑問に思っています。

解決方法は?

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])}`);
* });
*/

これは、特にサーバーSDKのためのものです

UPDATEしてください。 Cloud Firestore [クライアントサイドSDK]がINクエリーをサポートしました!"。

https://firebase.googleblog.com/2019/11/cloud-firestore-now-supports-in-queries.html

myCollection.where(firestore.FieldPath.documentId(), 'in', ["123","456","789"])