I simply want to perform an \'OR\' operation and get the both results of two queries into one stream.
Here\'s my code with a single stream
StreamBui
I’m not sure why you’re using forEach and Observable.just().
You can just merge two firestore streams directly like:
Observable.merge([stream1, stream2]).pipe(combineStream);
Wherre stream1/2 is just your firestore snapshot.