-
Notifications
You must be signed in to change notification settings - Fork 919
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FR: Firestore getAll() to retrieve multiple documents at once. #1176
Comments
Thanks for the feedback! This is a common request (at least lately!) and is something we plan to address. @wilhuff just wrote up the rationale for why it's not provided yet over on our iOS repo: firebase/firebase-ios-sdk#1877 |
BatchGet would be a great feature! |
Hi, is this feature or BatchGet available at |
The best way to check for new features is to check our release notes, where we describe everything we've added/fixed. As described in the other repo, we'd love to build this feature, but it requires an addition to the protocol to make it work, and we have other, higher priority work we're focusing on. |
@wilhuff please bump this higher on your priority list 🔝 |
This would also be great if made available for iOS. |
[REQUIRED] Describe your environment
[REQUIRED] Describe the problem
A feature request for Firestore transaction.getAll
according to documentation transaction.getAll supported by Node.JS
https://cloud.google.com/nodejs/docs/reference/firestore/0.15.x/Transaction#getAll
I though it's available on web sdk but got error.. ( transaction.getAll is not a function )
Already use Promise.all(transaction.get(ref1),transaction.get(ref2),transaction.get(ref3))
and its working fine as alternative solution.
So it not that important FR, but i didn't understand why exist on Node but not on web sdk.
thanks
The text was updated successfully, but these errors were encountered: