-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Doesn't act as expected ! #117
Comments
If I'm understanding correctly, you'd expect this in const obj1 = { c: { d: 'd' }};
const obj2 = { a: 'done', c: { d: 'd' }};
const result = sift(obj1, [obj2]); // [] Where
Sift supports string queries like this: https://github.com/crcn/sift.js/blob/master/test/operations-test.js#L148 |
That the two queries have different results is by purpose in MongoDB and one of the tiny details, that makes this query language so powerful.
I'm in favor of reflecting the mongoDB behaviour as close as possible, something that looks like MongoDB Query Language, but doesn't behave like MongoDB Query Language is worse than a total different system in my opinion. |
Agreed. I'll move forward with this change then. :) |
Thank you for considering this as a next step. |
Hi @crcn |
Yep, sorry for not getting to this sooner, this ticket is long overdue. 😅 Just added the functionality to |
Hi,
I was just testing the library and I faced that in one exact case it doesn't return expected result.
test1
test2
Shouldn't the results of both tests be the same ?
Mongodb returns obj2 in that case :
The text was updated successfully, but these errors were encountered: