Fase 1:
Crea un indice di testo
db.sampleCollection.createIndex( { "$**": "text" } )
Fase 2:
Usa l'indice di testo per cercare la parola in questione
db.sampleCollection.find( { $text: { $search: "wordToSearch" } })
Crea un indice di testo
db.sampleCollection.createIndex( { "$**": "text" } )
Usa l'indice di testo per cercare la parola in questione
db.sampleCollection.find( { $text: { $search: "wordToSearch" } })