match only documents with array size greater than one in mongodb aggregation code example
Example: query document array size greater than 1
// Find all docs that have at least two name array elements.
db.accommodations.find({'name.1': {$exists: true}})