I have a document in MongoDB that looks like this:
{ users: ["2", "3", "4"] }
I'm try to query this document by matching the users array.
db.things.find( { users: { $all: [ "2", "3", "4" ] } } )
That query works, but would also return this document:
{ users: ["2", "3", "4", "5"] }
Last requirement is to be able to query the users array with the elements out of order, say [ "3", "4", "2" ]
in the query, and it be able to return my first document listed.
Any help would be greatly appreciated. Thanks in advance.
I'm also using mongoid, if that has a helper that anyone knows about, but can do a straight mongo query if I need to.
You could combine your query with a { users : { $size : 3 } } clause and adjust the size to match the number of users you are querying for. That would ensure that you are getting the exact set, and not a subset.
If the elements are out of order, you might need to do a { users : { $exists : "1" } } for each, and combine those and the $size clause all together.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With