Я пытаюсь получить отличные данные из базы данных MySQL по модели книжной полки.
Контроллер отдела:
Department.distinct('departmentName').fetchAll().then((result) => {
return res.send({
status: '204',
message: 'Data is Fetched',
error: false,
data: result
})
}
Модель отдела:
Bookshelf.model('Department' , {
tableName:'departments',
hasSecurePassword: true,
hasTimestamps : ['created_at' , 'updated_at'],
softDelete: true,
hidden: ['deleted_at'],
parse: function(response){
if(response.allowUseOfMyContactInformation != null)
response.allowUseOfMyContactInformation = !!+response.allowUseOfMyContactInformation;
return response;
}
})
Кто-нибудь, пожалуйстаhelp Я получаю сообщение об ошибке "Department.distinct не является функцией"