exports.listarProfissionais = function(request, response) {
if (request.get("Authorization") == "test") {
ProfissionalSchema.find({}, function(erro, profissionais) {
if (erro)
response.json({"erro": "Erro ao listar os profissionais !"});
else {
response.json(profissionais); // ASSIM ELE RETORNA TODOS OS ATRIBUTOS
}
});
} else {
response.json({"erro": "profissional/listar -> Invalid access tokens"});
}
}
I would like to return only the attribute "name" and "email" for example, but I'm having a hard time understanding the concept.