Item.find().sort([['_id','descending']]).limit(15).each(function(doc) {
client.send(JSON.stringify(doc));
});
Возвращает эту ошибку:
Error: Error: Illegal sort clause, must be of the form [['field1', '(ascending|descending)'], ['field2', '(ascending|descending)']]\n
Есть идеи?Спасибо!