mongodb includes array code example

Example 1: mongodb array field contains

db.inventory.find( { tags: ["red", "blank"] } )

Example 2: 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 3: mongodb array field contains

db.inventory.find( { tags: { $all: ["red", "blank"] } } )

Example 4: find string element in an array mongodb

db.articles.find({
    "stock.country" : "01",
    "stock.warehouse.code" : "02"
}).pretty();