Dipende se stai cercando di trovare documenti in cui words
contiene entrambi gli elementi (text
e here
) utilizzando $all
:
db.things.find({ words: { $all: ["text", "here"] }});
o uno dei due (text
o here
) utilizzando $in
:
db.things.find({ words: { $in: ["text", "here"] }});