How to stream documents that match a query? #4339
-
I see a Stream API on the NodeJS side https://googleapis.dev/nodejs/firestore/latest/CollectionReference.html#stream. Does the same exist on the react native end? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
It does not, the native APIs on android/ios aren't present: https://firebase.google.com/docs/reference/android/com/google/firebase/firestore/CollectionReference - in fact the link you reference is for the admin sdk only, it's not even present on the firebase-js-sdk I have needed something like this in my project. I implemented a cloud function that used the admin sdk to do the work and return the needful |
Beta Was this translation helpful? Give feedback.
It does not, the native APIs on android/ios aren't present: https://firebase.google.com/docs/reference/android/com/google/firebase/firestore/CollectionReference - in fact the link you reference is for the admin sdk only, it's not even present on the firebase-js-sdk
I have needed something like this in my project. I implemented a cloud function that used the admin sdk to do the work and return the needful