Option usecreateindex is not supported

Welcome to the MongoDB Community Forums @Jose_Valenzuela !

What version of Mongoose are you using? The useCreateIndex option has been deprecated for a while and removed as of the Mongoose 6 release per No More Deprecation Warning Options:

useNewUrlParser , useUnifiedTopology , useFindAndModify , and useCreateIndex are no longer supported options. Mongoose 6 always behaves as if useNewUrlParser , useUnifiedTopology , and useCreateIndex are true , and useFindAndModify is false .

The solution is to remove any unsupported options from your code.

Regards,
Stennie

31 Likes