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
Instead of observing all changes in all instances and then filtering them in the observe callback, we could provide already a query to the database to limit documents. For example, {_id: {$gte: 'a', $lt: 'c'} returns only documents where _id starts with a or b.
The text was updated successfully, but these errors were encountered:
Instead of observing all changes in all instances and then filtering them in the observe callback, we could provide already a query to the database to limit documents. For example,
{_id: {$gte: 'a', $lt: 'c'}
returns only documents where_id
starts witha
orb
.The text was updated successfully, but these errors were encountered: