Warao

Results 19 comments of Warao

``` [ { collection: 'collections', doc: props.collectionId, storeAs: `collection/${props.collectionId}` } ] ``` Doesn't solve my use case. My listeners are set on users actions so, when the user comes back...

@prescottprue Is ``` connect(({ firestore }) => ({ somethingOrdered: Object.values(firestore.data.something).filter(Boolean) })) ``` a valid workaround for this? `filter(Boolean)` is required in order to delete the `null` values preserved, `preserveOnDelete` doesn't...

Hey, I thought that was the behavior of `CLEAR_DATA`, so I'm renaming the issue. My current use case is that adding listeners manually and don't removing them on unmounting, when...

I'm also suffering of a similar situation. I want to load a page with all my users in it. The issue is that `LISTENER_RESPONSE` returns immediately the logged in user...

I couldn't figure out how to make my listener load all users at once. Storing users in different location using `storeAs` didn't make the trick. I ended up disabling react-redux-firebase...

Above solution made my real-time profile stop working, @compojoom thanks, your code helped me to load the users list manually.

I'm facing this issue again but this time I have only one query on the same collection: ``` const query = { collection: Team.collection, doc: this.props.profile.teamId, subcollections: [{ collection: Entity.collection...

Hmmm, I think it is not supported by the API. Anyways, I found the issue tags I was looking for :-)