how to find array element in mongodb code example
Example 1: mongodb find array with element
// Finds all documents that have a property named "tags"
// which has at least one array element matching "red"
db.inventory.find( { tags: "red" } )
Example 2: mongodb array field contains
db.inventory.find( { tags: { $all: ["red", "blank"] } } )