I have a MongoDB document as follows:
{
    "_id" : ObjectId("5c29f3123d8cf714fd9cdb87"),
    "Machine" : "host1",
    "Pools" : [
        "Pool1",
        "Pool2"
    ]
}
How do I find all the documents that have pool Pool1 in "Pools" key in my collection?
I tried the following, but it doesn't seem correct.
 db.Resources.find({Pools: {$elemMatch: { "$in", ['Pool1']}}}).pretty()
 
    