You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The functionality to be able to string together multiple queries for the foreign key. At the moment there is only one .where(...). Being able to have multiple .where(...).where(...) (Note the firebase limits), would help the queries be more specific.
I have not come across it yet where we need an operator other than ==. I thought about making it optional so that it can easily be changed if we need something else down the line.
So in the above example the where would be constructed as follows:
.where('workingCopy', '==', masterId) // As it has always been
.where('user', '==', userId) // New where
The functionality to be able to string together multiple queries for the foreign key. At the moment there is only one
.where(...)
. Being able to have multiple.where(...).where(...)
(Note the firebase limits), would help the queries be more specific.The text was updated successfully, but these errors were encountered: