I'm encountering an issue with my MongoDB data provider, as I am informed that my connection string is invalid.
The specific error message states:
The provided database string is invalid. MongoDB connection string error: Missing delimiting slash between hosts and options in database URL.
Oddly enough, my connection string already includes a delimiting slash. Here it is:
mongodb://<user>:<pass>@cluster0.<server>.mongodb.net/?retryWrites=true&w=majority
What could be causing this problem? Is there something important that I might have overlooked?