Depending on the deployment, I sometimes connect to a 3.2 database and other times to a 2.7 database. Every now and then, I come across a feature that is only available in version 3.2 and not in 2.7, so I need to verify the database version. I have attempted the following method based on the MongoDB documentation.
> Meteor.users.rawDatabase().version()
TypeError: Object [object Object] has no method 'version'
Is there a way to retrieve the database version in meteor?