Replies: 1 comment
-
Hey @nilandasd -- looks like you might have found a bug! Seems like the fix ought to be straightforward (this line here). I've added a ticket to track this, here: https://jira.mongodb.org/browse/MONGOID-5780 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
What is expected when you use 2 not operators in sequence like
User.not.not.where(field: true)
? Shouldn't the queryUser.where(foo: true)
be equivalent toUser.not.not.where(foo:true)
? I am finding that this is not the case, and am wondering if this usage of the not operator is unsupported or if this is a bug?Beta Was this translation helpful? Give feedback.
All reactions