I am getting this error while creating index for search query. I wanted to make autocmplete for my search engine but mongo db keeps on throwing this error.
Here is my code:
const tracks = db.collection("tracks")
await tracks.createIndex({
"info.title": "autocomplete",
artist: "autocomplete",
genre: "autocomplete",
sid: "autocomplete",
})