I\'m using MongoDb (as part of MongoJS) in Node. Here is the documentation for MongoJS.
MongoDb
MongoJS
Node
I\'m trying to do a call within Node based
if you are using mongoose you can try this:
var mongoose = require('mongoose') usersSchema = mongoose.model('users'), mongoose.Types.ObjectId("") usersSchema.find({"_id": mongoose.Types.ObjectId("")}, function (err, record) { // Do stuff });