We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi ,
When we try to connect mongodbatlass using mongoskin then getting below error, When I excute any query with db
BSON field 'authenticate.nonce' is an unknown field
code sample var mongo = require('mongoskin');
var db = mongo.db("mongodb+srv:XXX", {
native_parser : true,
//useNewUrlParser: true, // useCreateIndex: true, // useUnifiedTopology: true });
db.collection('user').findOne({ "email": "[email protected]" },{email:1} ,function (err, resSet) {
console.log("resSet:"+JSON.stringify(resSet)) console.log("resSet:"+err)
});
need urgent help on this
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi ,
When we try to connect mongodbatlass using mongoskin then getting below error, When I excute any query with db
BSON field 'authenticate.nonce' is an unknown field
code sample
var mongo = require('mongoskin');
var db = mongo.db("mongodb+srv:XXX", {
//useNewUrlParser: true,
// useCreateIndex: true,
// useUnifiedTopology: true
});
db.collection('user').findOne({
"email": "[email protected]"
},{email:1} ,function (err, resSet) {
console.log("resSet:"+JSON.stringify(resSet))
console.log("resSet:"+err)
});
need urgent help on this
The text was updated successfully, but these errors were encountered: