Created
December 23, 2015 15:59
-
-
Save danared/b68f2d7ec79df8e64891 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> db.test.find() | |
{ "_id" : { "a" : 1234, "b" : 5678 } } | |
> db.test.find( { _id : { b : 5678, a : 1234 } } ) <- No Match! Wuh? | |
> db.test.find( { _id : { a : 1234, b : 5678 } } ) <- But this does? What"s the diff? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment