I have a field _keywords which is an array of strings. I want to get documents of which _keywords are super-set of the query array.
_keywords
For example
Use the $all operator:
$all
db.article.find( { _keywords: { $all: [ 'foo1', 'foo2' ] } } );
Source: http://www.mongodb.org/display/DOCS/Advanced+Queries#AdvancedQueries-%24all