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 resulting query to the database is isDeleted: true and not $not: {isDeleted: true}. I know $ne exists so this kind of query shouldn't normally be used in the first place, but I accidentally had some in the codebase.
Presumably because this instantiation ignores checking the not in the overridden function.
you're exactly right. I'm going to mark this as a 2.1 since that should be out in a few days and I'm trying to avoid a 2.0.3. But I can backport if a 2.0.3 is needed. thanks.
When building a query such as
the resulting query to the database is
isDeleted: true
and not$not: {isDeleted: true}
. I know$ne
exists so this kind of query shouldn't normally be used in the first place, but I accidentally had some in the codebase.Presumably because this instantiation ignores checking the
not
in the overridden function.The text was updated successfully, but these errors were encountered: