mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
7 lines
146 B
JavaScript
Executable File
7 lines
146 B
JavaScript
Executable File
var mongojs = require('./');
|
|
var db = mongojs('test', ['users', 'a']);
|
|
|
|
db.a.distinct('person.name', function(err, nms) {
|
|
console.log(nms);
|
|
});
|