Scott Prue
Scott Prue
Created [react-redux-firebase](https://github.com/prescottprue/react-redux-firebase) to make this available on npm for now.
Have you tried waiting for auth to load before creating the query? Otherwise the query will contain undefined - This practice is described [in the queries section](https://react-redux-firebase.com/docs/queries.html#loading) and [in the...
Thanks for reaching out - this makes sense due the the serializing you mentioned. Not really sure about how this would be addressed other than the workaround mentioned
I believe it is because your data from the two queries are running over eachother since they both have the `storeAs` set to `specificEvents` - if you want them to...
Done in #43. This can be closed when it is merged.
What are you getting from calling that custom function? An error or is it returning a value? This command should attach the same way the others do. Really this is...
https://github.com/prescottprue/cypress-firebase/pull/564
https://github.com/prescottprue/cypress-firebase/issues/501#issuecomment-1729915139 calls out the need for more than two wheres - with the modular SDK `OR` is also possible with 2+ wheres: https://firebase.google.com/docs/firestore/query-data/queries#web-modular-api_14
https://github.com/prescottprue/cypress-firebase/pull/1094
@AlanMendicutti make sure you are returning the plugin as per the setup documentation (your example only calls `cypressFirebasePlugin` but doesn't return it in `setupNodeEvents`: ```diff setupNodeEvents(on, config) { // implement...