我只想知道是否可以使用水线选择特定字段,下面给出了orientdb查询。
e.g.
select phone from user
我想使用此查询从用户顶点中选择电话
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'); });