-
Notifications
You must be signed in to change notification settings - Fork 0
/
SchemaRecados.js
58 lines (45 loc) · 1.18 KB
/
SchemaRecados.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//Schema Recados
let schema = new Schema({
_id: {type: ObjectId},
de: {type: ObjectId},
para: {type: ObjectId},
mensagem: {type: String, required: true, trim: true, minlength: 2},
recebido: {type: Boolean, required: true},
respondido: {type: Boolean, required: true},
dataEnvio: {type: Date, required: true, default: Date.now},
})
let medicoSchema = {
_id: ObjectId,
especialidade: String,
usuario_id : {type: ObjectId, ref: 'Usuario'}
};
let pacienteSchema = {
_id: ObjectId,
diabete: Boolean,
usuario_id : {type: ObjectId, ref: 'Usuario'}
};
let usuarioSchema = {
_id: ObjectId,
nome: String,
login : String,
senha: String,
medico_id: {type: ObjectId, ref: 'Medico'},
paciente_id: {type: ObjectId, ref: 'Paciente'}
};
let atendimentoSchema = {
id_medico: {type: ObjectId, ref: "Usuario.medico"},
data: Date,
// etc...
};
// registro dos models.......
// POPULATE NÃO FUNCIONA, POIS PRECISO BUSCAR NA COLLECTION USUARIO,
// O REGISTRO ONDE USUARIO.MEDICO._ID == ID_MEDICO
Atendimento.find().populate({
path: 'idMedico',
})
.exec()
.then(function (atendimento) {
res.status(200).json(atendimento);
}).catch(function (erro) {
next(erro);
});