How can I join two Firestore queries using rxfire and rxjs (OR query)
问题 The goal is simple: to join two firestore queries utilizing rxjs , rxfire , and the rnfirebase react native library. I've read multiple tutorials 1, 2 on joining queries, but they all fail with different errors. //Simple test for collectionData import { collectionData } from 'rxfire/firestore'; this.myQuery = this.props.docRef.collection(`messages`).where('read', 'array-contains', this.props.me.uid) collectionData(this.myQuery, 'id').subscribe(docs => console.log(docs)) //Fails with error: