Depende se você está tentando encontrar documentos onde
words
contém ambos os elementos (text
e here
) usando $all
:db.things.find({ words: { $all: ["text", "here"] }});
ou qualquer um deles (
text
ou here
) usando $in
:db.things.find({ words: { $in: ["text", "here"] }});