Som föreslagna av @Veeram
Steg 1:
Skapa ett textindex
db.sampleCollection.createIndex( { "$**": "text" } )
Steg 2:
Använd textindexet för att söka efter ordet i fråga
db.sampleCollection.find( { $text: { $search: "wordToSearch" } })
Som föreslagna av @Veeram
Skapa ett textindex
db.sampleCollection.createIndex( { "$**": "text" } )
Använd textindexet för att söka efter ordet i fråga
db.sampleCollection.find( { $text: { $search: "wordToSearch" } })