I just want to know that is it possible to select specific fields using waterline, orientdb query is given below.
e.g.
select phone from user
I want to select phone from user vertices by using this query
userModel.find(phone)
.then(function(phonelist){
if(!phonelist)
console.log('msg: RECORD_NOT_FOUND');
else
console.log(phonelist);
.catch(function(err){ console.log('err: 'err'); });