NodeJS couchbase@2.0.0-beta error with view query

annd since i can’t edit my post, the _get function should be the following… The documentation uses just ret, but in reality, it is err, rows, meta.

_get: function(){
var query = this.query.from(‘server’, ‘by_id’).limit(10);
this.db.query(query, function (err, rows, meta) {
for (i in rows) {
console.log(rows[i]);
}
})
}