Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumMongoDBtext and $regex searchSingle-choice MCQ

You created two text indexes intending to search `title` and `body` separately. The second `createIndex` call fails. Why?

db.docs.createIndex({ title: 'text' }) db.docs.createIndex({ body: 'text' }) // fails